docker: Add PIVX, Dash and Firo to isolated config

Changed pivx-params location to PIVX datadir.

Still need a way to set the Firo wallet seed.
This commit is contained in:
tecnovert
2022-11-09 19:10:17 +02:00
parent ae2ddc4049
commit f65ae07cf9
12 changed files with 208 additions and 14 deletions

View File

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

View File

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

View File

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