-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (29 loc) · 895 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (29 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
torrent-explorer:
image: rabbitcompany/torrent-explorer:latest
container_name: torrent-explorer
restart: unless-stopped
ports:
- "3000:3000"
environment:
- TZ=UTC
- PROXY=direct
- TOKEN=hux23to2isshfuyttzlyy6dfn2m9vtfdpew6iyjUbRqxKtXhgx
- RELEASE_GROUP=RabbitCompany
- XMR=8BmrgB8NGWhe8TSjNJDNMKgHrvxEQP1ZUDTWMNWA8CnKMpQjBjZhje1DPMmkbdNyMZESZDvHgMyufe5KPtLgy41Q8MTWnBE
- FRONTEND_URL=https://torrents.example.com
volumes:
#- ./config.json:/app/config.json
- torrent_explorer_torrents:/app/torrents
- torrent_explorer_data:/app/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
torrent_explorer_torrents:
driver: local
torrent_explorer_data:
driver: local