mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
seednode-docker: Connect to Bitcoin Core on host
This commit is contained in:
parent
e742dd77ed
commit
857c70497a
2 changed files with 7 additions and 3 deletions
|
@ -2,13 +2,13 @@
|
|||
JDK_JAVA_OPTIONS=-Xms4096M -Xmx4096M -XX:+ExitOnOutOfMemoryError
|
||||
|
||||
# bitcoin p2p settings
|
||||
BITCOIN_P2P_HOST=127.0.0.1
|
||||
BITCOIN_P2P_HOST=host.docker.internal
|
||||
BITCOIN_P2P_PORT=8333
|
||||
|
||||
# bitcoind rpc ports
|
||||
BITCOIN_RPC_HOST=192.168.1.1
|
||||
BITCOIN_RPC_HOST=host.docker.internal
|
||||
BITCOIN_RPC_PORT=8332
|
||||
BITCOIN_RPC_BLOCKNOTIFY_HOST=127.0.0.1
|
||||
BITCOIN_RPC_BLOCKNOTIFY_HOST=host.docker.internal
|
||||
BITCOIN_RPC_BLOCKNOTIFY_PORT=5120
|
||||
|
||||
BITCOIN_RPC_USER=bisq
|
||||
|
|
|
@ -7,6 +7,10 @@ services:
|
|||
replicas: 1
|
||||
restart_policy:
|
||||
condition: any
|
||||
extra_hosts:
|
||||
- host.docker.internal:host-gateway
|
||||
ports:
|
||||
- 127.0.0.1:5120:5120 # bitcoind rpc block notifications
|
||||
volumes:
|
||||
- bisq_data:/bisq/bisq-seednode
|
||||
command:
|
||||
|
|
Loading…
Add table
Reference in a new issue