Run
OS Requirements⚓︎
docker-ce
installed - Get Docker.
Use Cases⚓︎
- Pool Management
- Wallet Management
- Node testing
docker run -dit
--name <YourCName>
--security-opt=no-new-privileges
-e NETWORK=mainnet
-v <your_custom_path>:/opt/cardano/cnode/priv
-v <your_custom_db_path>:/opt/cardano/cnode/db
cardanocommunity/cardano-node
Use Cases:⚓︎
- Node Relay
docker run -dit
--name <YourCName>
--security-opt=no-new-privileges
-e NETWORK=mainnet
-p 6000:6000
-v <your_custom_path>:/opt/cardano/cnode/priv
-v <your_custom_db_path>:/opt/cardano/cnode/db
cardanocommunity/cardano-node
Note
--entrypoint=bash
# This option won't start the node but only the docker OS, ready to get in and play with it.