Run Cosmos with Docker 2 cmd (no need Install Cosmos)
Ahoy, I hope you are doing a good Validatorian Job. This is for even do it better. Ok, let’s run Cosmos in two commands with docker. If the server has ready the Docker and Goland just start here. = CMD#1= ``` docker run -it -p 26657:26657 -p 26656:26656 -v ~/.gaiad:/root/.gaiad -v ~/.gaiacli:/root/.gaiacli meleatrust/get-cosmos:part024 gaiad init --name VALIDATORIAN-NAME ``` #Lets add the seed and the persistent peer for Sync gaia-8001 ``` cd .gaiad/data ``` #If -bash: cd: data: Permission denied = ``` sudo chown user:group data ``` #Remove default genesis file and down the good for gaia-8001. (today) ``` rm genesis.json ``` Download the Good genesis.json ``` wget -c 'https://raw.githubusercontent.com/cosmos/testnets/master/gaia-8001/genesis.json ' ``` #Add seed nodes and persistent peers to config.toml and verify your Validatorian name is ok. ``` vi config.toml ``` ``` seeds = "7c8b8fd03577cd4817f5be1f03d506f879df98d8@gaia-seed1.interblock.io:26656, a28737ff02391a6e00a1d3b79befd57e68e8264c@gaia-seed2.interblock.io:26656,…
Excerpt (1068 of 4767 characters). Read the whole post on the forum ↗
wow …good thank you