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:
|
2022-06-08 06:42:54 +02:00
|
|
|
image: tornadocash/relayer
|
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
|
2022-06-29 12:03:25 +02:00
|
|
|
depends_on: [redis]
|
2021-02-09 22:30:15 +01:00
|
|
|
|
2020-10-14 21:10:34 +02:00
|
|
|
worker1:
|
2022-06-08 06:42:54 +02:00
|
|
|
image: tornadocash/relayer
|
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
|
2022-06-29 12:03:25 +02: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
|
2019-12-13 13:32:09 +01:00
|
|
|
|
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: ...
|
|
|
|
|
2019-12-13 13:32:09 +01:00
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
restart: always
|
2022-06-29 12:03:25 +02:00
|
|
|
command: [redis-server, '/usr/local/etc/redis/redis.conf', --appendonly, 'yes']
|
2022-06-08 06:42:54 +02:00
|
|
|
ports:
|
|
|
|
- '6379:6379'
|
2019-12-13 13:32:09 +01:00
|
|
|
volumes:
|
2022-06-08 06:42:54 +02:00
|
|
|
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
2019-12-13 13:32:09 +01:00
|
|
|
- redis:/data
|
|
|
|
|
2020-11-04 17:01:51 +01:00
|
|
|
nginx:
|
|
|
|
image: nginx:alpine
|
2022-06-08 06:42:54 +02:00
|
|
|
# container_name: nginx
|
2020-11-04 17:01:51 +01:00
|
|
|
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
|
|
|
|
|
2019-12-13 13:32:09 +01:00
|
|
|
volumes:
|
2020-11-04 17:01:51 +01:00
|
|
|
conf:
|
|
|
|
vhost:
|
|
|
|
html:
|
|
|
|
certs:
|
2020-01-03 18:58:54 +01:00
|
|
|
redis:
|