Skip to content
Cosmopediaby Unity Nodes
DiscussionsValidationDonwload Cosmos and Build and run your own Official Cosmos-Docker-Container locallyForum ↗

Donwload Cosmos and Build and run your own Official Cosmos-Docker-Container locally

Validation1 posts2,938 views2 likesLast activity Nov 2018
ME
melea-trustOP
Nov 2018 2

Hello, in this way we can download the official Cosmos repo and build the Docker container for run locally. if want to Upload to the Docker-Hub your own image, for run in any server without having to build = Build Cosmos Docker and upload to Docker-Hub for run in any machine Here the link for running my own image from any machine. https://forum.cosmos.network/t/run-cosmos-with-docker-2-cmd-no-need-install-cosmos Ok, let’s start. #If need install docker and Goland Start here. #Install go ``` wget -c 'https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz' -O go1.10.3.linux-amd64.tar.gz ``` ``` sudo tar -C /usr/local -xzf go1.10.3.linux-amd64.tar.gz ``` ``` sudo rm -Rf go1.10.3.linux-amd64.tar.gz ``` #Set gopath ``` vi $HOME/.profile ``` #Add this lines to your file: PATH=“$PATH:/usr/local/go/bin” GOPATH=“$HOME/go” PATH=“$PATH:$GOROOT/bin:$GOPATH/bin” #reload profile ``` source $HOME/.profile ``` ``` go version ``` #$: go version go1.10.3 linux/amd64 Step 2 #Install Docker ``` sudo apt-get update curl -fsSL get.docker.com -o get-docker.sh sh get-docker.sh sh install.sh ``` Add your user to Docker Group ``` sudo usermod -aG docker…

Excerpt (1195 of 4391 characters). Read the whole post on the forum ↗

← Back to Discussions