docker: Update templates for BCH.

This commit is contained in:
tecnovert
2024-11-12 22:43:32 +02:00
parent 283cfc7c59
commit ca5b9e5e00
10 changed files with 47 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
bitcoincash_core:
image: i_bitcoincash
build:
context: bitcoincash
dockerfile: Dockerfile
container_name: bitcoincash_core
volumes:
- ${DATA_PATH}/bitcoincash:/data
expose:
- ${BCH_RPC_PORT}
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
restart: unless-stopped

View File

@@ -7,7 +7,7 @@
volumes:
- ${DATA_PATH}/wownero_daemon:/data
expose:
- ${BASE_WOW_RPC_PORT}
- ${WOW_RPC_PORT}
logging:
driver: "json-file"
options:

View File

@@ -16,6 +16,7 @@
- ${DATA_PATH}/pivx:/data/pivx
- ${DATA_PATH}/dash:/data/dash
- ${DATA_PATH}/firo:/data/firo
- ${DATA_PATH}/bitcoincash:/data/bitcoincash
environment:
- TZ
- BSX_DOCKER_MODE
@@ -50,8 +51,8 @@
- DEFAULT_XMR_RESTORE_HEIGHT
- WOW_DATA_DIR
- WOW_RPC_HOST
- BASE_WOW_RPC_PORT
- BASE_WOW_ZMQ_PORT
- WOW_RPC_PORT
- WOW_ZMQ_PORT
- WOW_WALLETS_DIR
- WOW_WALLET_RPC_HOST
- WOW_WALLET_RPC_PORT
@@ -73,4 +74,9 @@
- FIRO_RPC_PORT
- FIRO_RPC_USER
- FIRO_RPC_PWD
- BCH_DATA_DIR
- BCH_RPC_HOST
- BCH_RPC_PORT
- BCH_RPC_USER
- BCH_RPC_PWD
restart: "no"