tornado-relayer/docker-compose.yml

100 lines
2.0 KiB
YAML
Raw Normal View History

2019-12-05 14:08:54 -05:00
version: '2'
2019-12-12 15:04:19 -05:00
2019-12-05 14:08:54 -05:00
services:
2020-10-14 15:10:34 -04:00
server:
2019-12-05 14:08:54 -05:00
image: tornadocash/relayer
restart: always
2020-10-03 03:02:38 -04:00
command: server
2020-10-14 15:10:34 -04:00
env_file: .env
2019-12-05 14:08:54 -05:00
environment:
2020-11-04 11:01:51 -05:00
VIRTUAL_HOST: example.duckdns.org
LETSENCRYPT_HOST: example.duckdns.org
2019-12-13 08:14:50 -05:00
REDIS_URL: redis://redis/0
nginx_proxy_read_timeout: 600
2020-11-04 14:23:14 -05:00
depends_on: [redis]
2019-12-13 08:14:50 -05:00
2020-10-14 15:10:34 -04:00
treeWatcher:
2019-12-13 08:14:50 -05:00
image: tornadocash/relayer
restart: always
2020-10-14 15:10:34 -04:00
command: treeWatcher
env_file: .env
2019-12-13 08:14:50 -05:00
environment:
2020-10-14 15:10:34 -04:00
REDIS_URL: redis://redis/0
2020-11-04 14:23:14 -05:00
depends_on: [redis]
2020-10-03 03:02:38 -04:00
2020-10-14 15:10:34 -04:00
priceWatcher:
2020-10-03 03:02:38 -04:00
image: tornadocash/relayer
restart: always
2020-10-14 15:10:34 -04:00
command: priceWatcher
env_file: .env
2020-10-03 03:02:38 -04:00
environment:
2020-10-14 15:10:34 -04:00
REDIS_URL: redis://redis/0
2020-11-04 14:23:14 -05:00
depends_on: [redis]
2020-10-03 03:02:38 -04:00
2020-10-14 15:10:34 -04:00
worker1:
2020-10-03 03:02:38 -04:00
image: tornadocash/relayer
restart: always
command: worker
2020-10-14 15:10:34 -04:00
env_file: .env
2020-10-03 03:02:38 -04:00
environment:
2020-10-14 15:10:34 -04:00
REDIS_URL: redis://redis/0
2020-11-04 14:23:14 -05:00
depends_on: [redis]
2020-10-14 15:10:34 -04:00
2020-11-04 11:01:51 -05:00
# worker2:
# image: tornadocash/relayer
# restart: always
# command: worker
# env_file: .env
# environment:
# PRIVATE_KEY: qwe
# REDIS_URL: redis://redis/0
redis:
image: redis
restart: always
command: [redis-server, --appendonly, 'yes']
volumes:
- redis:/data
2020-11-04 11:01:51 -05:00
nginx:
image: nginx:alpine
container_name: nginx
restart: always
ports:
- 80:80
- 443:443
volumes:
- conf:/etc/nginx/conf.d
- vhost:/etc/nginx/vhost.d
- html:/usr/share/nginx/html
- certs:/etc/nginx/certs
logging:
driver: none
dockergen:
image: poma/docker-gen
container_name: dockergen
restart: always
command: -notify-sighup nginx -watch /etc/docker-gen/templates/nginx.tmpl /etc/nginx/conf.d/default.conf
volumes_from:
- nginx
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
letsencrypt:
image: jrcs/letsencrypt-nginx-proxy-companion
container_name: letsencrypt
restart: always
environment:
NGINX_DOCKER_GEN_CONTAINER: dockergen
volumes_from:
- nginx
- dockergen
volumes:
2020-11-04 11:01:51 -05:00
conf:
vhost:
html:
certs:
2020-01-03 12:58:54 -05:00
redis: