A customizable Docker container for Namecoin
docker run -d --name namecoin --restart=always -v /data/namecoin:/data/namecoin acejam/namecoin:latest
This container includes support for Namecoin configuration values. These values can be set when calling docker run
through the use of environment variables.
The following values are configurable:
RPC_USER
RPC_PASS
RPC_ALLOW_IP
MAX_CONNECTIONS
RPC_PORT
PORT
For example, to run the container with the username "DevUser" and a password of "P@ssw0rd123" with 10 max connections, you can run the following:
docker run -d -e RPC_USER="DevUser" -e RPC_PASS="P@ssw0rd123" -e MAX_CONNECTIONS=10 acejam/namecoin:latest
Coming soon!