mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 18:38:09 +01:00
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:
16
docker/production/compose-fragments/1_dash.yml
Normal file
16
docker/production/compose-fragments/1_dash.yml
Normal 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
|
||||
16
docker/production/compose-fragments/1_firo.yml
Normal file
16
docker/production/compose-fragments/1_firo.yml
Normal 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
|
||||
16
docker/production/compose-fragments/1_pivx.yml
Normal file
16
docker/production/compose-fragments/1_pivx.yml
Normal 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
|
||||
Reference in New Issue
Block a user