This is a docker container to help run Titan-Node's binary for mining livepeer:
https://github.com/Titan-Node
For a minimum deployment you need to specific your nickman and your Livepeer address:
docker run --runtime nvidia -itd --name titan-node \
-e "ethAddr=0xXXXXXXXXXX" \
-e "nickname=my-nickname" \
icsy7867/titan-node:latest
Additionally you can also specify which nvidia GPU to use:
-e "nvidia=0"
And your max sessions:
-e "maxSessions=10"
If you would like to mount your config directory, to preserve settings you can mount the /config directory:
-v /path/to/config:/config
So using all variables:
docker run --runtime nvidia -itd --name titan-node \
-e "ethAddr=0xXXXXXXXXXX" \
-e "nickname=my-nickname" \
-e "maxSessions=10" \
-e "nvidia=0" \
icsy7867/titan-node:latest
Content type
Image
Digest
sha256:05ba26f62…
Size
314.4 MB
Last updated
2 days ago
docker pull icsy7867/titan-node