derogab/coingraph-daemon
Coingraph is a real-time data for cryptocurrencies.
2.0K
A daemon for coingraph who takes care of
yarn
Open .env
and eventually change default preferences.
node app.js
Or with custom params
node app.js \
--db db.json \
--crypto bitcoin,ethereum \
--timeout 180 \
--api-port 8080 \
--io-port 8081
Info: custom params overwrite default preferences in .env
.
Build image from source
docker build -t derogab/coingraph-daemon .
Start container
docker run -d \
-p 8080:8080 \
-p 8081:8081 \
-v /path/to/host/data:/usr/src/app/data \
derogab/coingraph-daemon
Or with custom params
docker run -d \
-p 8080:8080 \
-p 8081:8081 \
-v /path/to/host/data:/usr/src/app/data \
derogab/coingraph-daemon \
--db db.json \
--crypto bitcoin,ethereum \
--timeout 180 \
--api-port 8080 \
--io-port 8081
docker pull derogab/coingraph-daemon