basicswap/docker/docker-compose.yml

25 lines
563 B
YAML
Raw Normal View History

version: '3.4'
2019-07-17 15:12:06 +00:00
services:
swapclient:
2020-12-02 21:19:10 +00:00
image: i_swapclient
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
logging:
2021-02-15 17:12:15 +00:00
driver: "json-file"
options:
max-size: "10m"
max-file: "5"
2019-07-17 15:12:06 +00:00
volumes:
coindata:
driver: local
2019-07-17 15:12:06 +00:00