Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linki/earthcoin-docker
Runs an EarthCoin node on Mainnet inside a Docker container.
https://github.com/linki/earthcoin-docker
Last synced: about 2 months ago
JSON representation
Runs an EarthCoin node on Mainnet inside a Docker container.
- Host: GitHub
- URL: https://github.com/linki/earthcoin-docker
- Owner: linki
- Created: 2014-09-08T20:41:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-04T11:30:36.000Z (over 7 years ago)
- Last Synced: 2024-10-12T18:54:01.064Z (3 months ago)
- Language: Shell
- Homepage: http://getearthcoin.com/
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EarthCoin Docker Container
Runs an EarthCoin node on Mainnet inside a docker container.
Build it:
$ docker build -t linki/earthcoin .
Use it like so:
$ docker run -d -p 15677:15677 linki/earthcoin
A second container can be used to persist the data between docker runs (recommended).
$ docker run -v /var/lib/earthcoin --name earthcoin-data busybox true
$ docker run -d -p 15677:15677 --volumes-from earthcoin-data linki/earthcoinPurpose of this container is to run a node that supports the network,
so there's no wallet and you cannot connect via rpc.
The separate data container is intended as cache for the blockchain
in case the container exits, not for backup.You can also use `fig up` to run it.
Have a look inside the container with:
$ docker run -ti --rm --volumes-from earthcoin-data linki/earthcoin /bin/bash
or alternatively:
$ fig run --rm earthcoin /bin/bash