tornado-relayer/docker-compose.yml

155 lines
4.1 KiB
YAML
Raw Normal View History

2019-12-05 20:08:54 +01:00
version: '2'
2019-12-12 21:04:19 +01:00
2019-12-05 20:08:54 +01:00
services:
2020-10-14 21:10:34 +02:00
server:
2020-12-19 00:16:09 +01:00
image: tornadocash/relayer:mining
2019-12-05 20:08:54 +01:00
restart: always
2020-10-03 09:02:38 +02:00
command: server
2020-10-14 21:10:34 +02:00
env_file: .env
2019-12-05 20:08:54 +01:00
environment:
2019-12-13 14:14:50 +01:00
REDIS_URL: redis://redis/0
nginx_proxy_read_timeout: 600
2020-11-04 20:23:14 +01:00
depends_on: [redis]
2019-12-13 14:14:50 +01:00
2020-10-14 21:10:34 +02:00
treeWatcher:
2020-12-19 00:16:09 +01:00
image: tornadocash/relayer:mining
2019-12-13 14:14:50 +01:00
restart: always
2020-10-14 21:10:34 +02:00
command: treeWatcher
env_file: .env
2019-12-13 14:14:50 +01:00
environment:
2020-10-14 21:10:34 +02:00
REDIS_URL: redis://redis/0
2020-11-04 20:23:14 +01:00
depends_on: [redis]
2020-10-03 09:02:38 +02:00
2020-10-14 21:10:34 +02:00
priceWatcher:
2020-12-19 00:16:09 +01:00
image: tornadocash/relayer:mining
2020-10-03 09:02:38 +02:00
restart: always
2020-10-14 21:10:34 +02:00
command: priceWatcher
env_file: .env
2020-10-03 09:02:38 +02:00
environment:
2020-10-14 21:10:34 +02:00
REDIS_URL: redis://redis/0
2020-11-04 20:23:14 +01:00
depends_on: [redis]
2020-10-03 09:02:38 +02:00
2021-02-09 22:30:15 +01:00
healthWatcher:
image: tornadocash/relayer:mining
restart: always
command: healthWatcher
env_file: .env
environment:
REDIS_URL: redis://redis/0
depends_on: [redis]
2020-10-14 21:10:34 +02:00
worker1:
2020-12-19 00:16:09 +01:00
image: tornadocash/relayer:mining
2020-10-03 09:02:38 +02:00
restart: always
command: worker
2020-10-14 21:10:34 +02:00
env_file: .env
2020-10-03 09:02:38 +02:00
environment:
2020-10-14 21:10:34 +02:00
REDIS_URL: redis://redis/0
2020-11-04 20:23:14 +01:00
depends_on: [redis]
2020-10-14 21:10:34 +02:00
2020-11-04 17:01:51 +01:00
# worker2:
2020-12-19 00:16:09 +01:00
# image: tornadocash/relayer:mining
2020-11-04 17:01:51 +01:00
# restart: always
# command: worker
# env_file: .env
# environment:
# PRIVATE_KEY: qwe
# REDIS_URL: redis://redis/0
2020-12-30 21:35:33 +01:00
# # this container will proxy *.onion domain to the server container
# # if you want to run *only* as .onion service, you don't need `nginx`, `letsencrypt`, `dockergen` containers
2020-11-29 08:18:28 +01:00
# tor:
# image: strm/tor
# restart: always
2020-12-30 21:35:33 +01:00
# depends_on: [server]
2020-11-29 08:18:28 +01:00
# environment:
# LISTEN_PORT: 80
2020-12-30 21:35:33 +01:00
# REDIRECT: server:8000
2020-11-29 08:18:28 +01:00
# # Generate a new key with
# # docker run --rm --entrypoint shallot strm/tor-hiddenservice-nginx ^foo
# PRIVATE_KEY: |
# -----BEGIN RSA PRIVATE KEY-----
# ...
# -----END RSA PRIVATE KEY-----
# # auto update docker containers when new image is pushed to docker hub (be careful with that)
# watchtower:
# image: v2tec/watchtower
# restart: always
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# # this container will send Telegram notifications when other containers are stopped/restarted
# # it's best to run this container on some other instance, otherwise it can't notify if the whole instance goes down
# notifier:
# image: poma/docker-telegram-notifier
# restart: always
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock:ro
# environment:
# # How to create bot: https://core.telegram.org/bots#3-how-do-i-create-a-bot
# # How to get chat id: https://stackoverflow.com/questions/32423837/telegram-bot-how-to-get-a-group-chat-id/32572159#32572159
# TELEGRAM_NOTIFIER_BOT_TOKEN: ...
# TELEGRAM_NOTIFIER_CHAT_ID: ...
# # this container will send Telegram notifications if specified address doesn't have enough funds
# monitor_mainnet:
# image: peppersec/monitor_eth
# restart: always
# environment:
# TELEGRAM_NOTIFIER_BOT_TOKEN: ...
# TELEGRAM_NOTIFIER_CHAT_ID: ...
# ADDRESS: '0x0000000000000000000000000000000000000000'
# THRESHOLD: 0.5 # ETH
# RPC_URL: https://mainnet.infura.io
# BLOCK_EXPLORER: etherscan.io
redis:
image: redis
restart: always
command: [redis-server, --appendonly, 'yes']
volumes:
- redis:/data
2020-11-04 17:01:51 +01: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 17:01:51 +01:00
conf:
vhost:
html:
certs:
2020-01-03 18:58:54 +01:00
redis: