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
When running the DATUM Gateway in Docker, you need to configure it to connect to your Bitcoin node. The connection method depends on where your Bitcoin node is running:
147
+
148
+
#### 1. Bitcoin Node Running in Docker (Same Network)
149
+
150
+
If your Bitcoin node is also running in a Docker container on the same network, use the container name as the hostname:
151
+
152
+
```json
153
+
{
154
+
"rpc_host": "bitcoin-node",
155
+
"rpc_port": 8332,
156
+
"rpc_user": "your_rpc_user",
157
+
"rpc_pass": "your_rpc_password"
158
+
}
159
+
```
160
+
161
+
In your `bitcoin.conf`, set the blocknotify to use the DATUM Gateway container name:
0 commit comments