Simple and fast setup of EOS.IO on Docker is also available.
- Docker Docker 17.05 or higher is required
- At least 8GB RAM (Docker -> Preferences -> Advanced -> Memory -> 8GB or above)
git clone https://github.com/EOSIO/eos.git --recursive
cd eos/Docker
docker build . -t eosio/eosdocker run --name eosiod -p 8888:8888 -p 9876:9876 -t eosio/eos start_eosiod.sh arg1 arg2By default, all data is persisted in a docker volume. It can be deleted if the data is outdated or corrupted:
$ docker inspect --format '{{ range .Mounts }}{{ .Name }} {{ end }}' eosiod
fdc265730a4f697346fa8b078c176e315b959e79365fc9cbd11f090ea0cb5cbc
$ docker volume rm fdc265730a4f697346fa8b078c176e315b959e79365fc9cbd11f090ea0cb5cbcAlternately, you can directly mount host directory into the container
docker run --name eosiod -v /path-to-data-dir:/opt/eosio/bin/data-dir -p 8888:8888 -p 9876:9876 -t eosio/eos start_eosiod.sh arg1 arg2curl http://127.0.0.1:8888/v1/chain/get_infodocker-compose upAfter docker-compose up, two services named eosiod and walletd will be started. eosiod service would expose ports 8888 and 9876 to the host. walletd service does not expose any port to the host, it is only accessible to eosioc when runing eosioc is running inside the walletd container as described in "Execute eosioc commands" section.
You can run the eosioc commands via a bash alias.
alias eosioc='docker-compose exec walletd /opt/eosio/bin/eosioc -H eosiod'
eosioc get info
eosioc get account initaUpload sample exchange contract
eosioc set contract exchange contracts/exchange/exchange.wast contracts/exchange/exchange.abiIf you don't need walletd afterwards, you can stop the walletd service using
docker-compose stop walletdYou can use docker compose override file to change the default configurations. For example, create an alternate config file config2.ini and a docker-compose.override.yml with the following content.
version: "2"
services:
eosiod:
volumes:
- eosiod-data-volume:/opt/eosio/bin/data-dir
- ./config2.ini:/opt/eosio/bin/data-dir/config.iniThen restart your docker containers as follows:
docker-compose down
docker-compose upThe data volume created by docker-compose can be deleted as follows:
docker volume rm docker_eosiod-data-volume