You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use environment variables to customize config ([see docker run environment options](https://docs.docker.com/engine/reference/run/#/env-environment-variables)):
5
+
6
+
docker run -v bitcoind-data:/bitcoin --name=bitcoind-node -d \
7
+
-p 8333:8333 \
8
+
-p 127.0.0.1:8332:8332 \
9
+
-e DISABLEWALLET=1 \
10
+
-e PRINTTOCONSOLE=1 \
11
+
-e RPCUSER=mysecretrpcuser \
12
+
-e RPCPASSWORD=mysecretrpcpassword \
13
+
kylemanna/bitcoind
14
+
15
+
Or you can use your very own config file like that:
16
+
17
+
docker run -v bitcoind-data:/bitcoin --name=bitcoind-node -d \
0 commit comments