2022-03-23 22:00:35 +00:00
|
|
|
version: '3.4'
|
2019-07-17 15:12:06 +00:00
|
|
|
services:
|
|
|
|
swapclient:
|
2020-12-02 21:19:10 +00:00
|
|
|
image: i_swapclient
|
2019-07-18 21:00:08 +00:00
|
|
|
stop_grace_period: 5m
|
2019-07-17 15:12:06 +00:00
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
volumes:
|
2019-07-19 15:33:51 +00:00
|
|
|
- ${COINDATA_PATH}:/coindata
|
2019-07-17 15:12:06 +00:00
|
|
|
ports:
|
2019-07-18 18:30:12 +00:00
|
|
|
- "${HTML_PORT}" # Expose only to localhost, see .env
|
2022-07-31 17:33:01 +00:00
|
|
|
- "${WS_PORT}" # Expose only to localhost, see .env
|
2021-02-14 13:06:46 +00:00
|
|
|
environment:
|
|
|
|
- TZ
|
2021-02-15 14:36:30 +00:00
|
|
|
logging:
|
2021-02-15 17:12:15 +00:00
|
|
|
driver: "json-file"
|
2021-02-15 14:36:30 +00:00
|
|
|
options:
|
|
|
|
max-size: "10m"
|
|
|
|
max-file: "5"
|
2019-07-17 15:12:06 +00:00
|
|
|
|
|
|
|
volumes:
|
2022-03-23 22:00:35 +00:00
|
|
|
coindata:
|
|
|
|
driver: local
|
2019-07-17 15:12:06 +00:00
|
|
|
|