-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (56 loc) · 1.24 KB
/
docker-compose.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
restart: unless-stopped
container_name: "sonarr"
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
ports:
- "8989:8989"
healthcheck:
test: curl --fail http://localhost:8989 || exit 1
interval: 20s
retries: 5
start_period: 7s
timeout: 10s
radarr:
image: lscr.io/linuxserver/radarr:latest
restart: unless-stopped
container_name: "radarr"
environment:
- PUID=1000
- PGID=1000
ports:
- "7878:7878"
healthcheck:
test: curl --fail http://localhost:7878 || exit 1
interval: 20s
retries: 5
start_period: 7s
timeout: 10s
proxarr:
image: synker/proxarr:latest
container_name: proxarr
restart: unless-stopped
depends_on:
sonarr:
condition: service_healthy
radarr:
condition: service_healthy
healthcheck:
test: curl --fail http://localhost:8880/health || exit 1
interval: 10s
retries: 3
start_period: 5s
timeout: 3s
ports:
- "8880:8880"
environment:
- LOG_LEVEL=Information
- TZ="Europe/Paris"
volumes:
- ./:/app/config
- ./logs:/logs"