-
Notifications
You must be signed in to change notification settings - Fork 3
/
radarr.yml
36 lines (34 loc) · 971 Bytes
/
radarr.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
version: "3.7"
services:
radarr:
image: linuxserver/radarr:latest
networks:
- overlay_network
environment:
- PUID=${PUID}
- PGID=${GROUP_ID_DOWNLOADERS}
- TZ=${TZ}
- UMASK=007
volumes:
- "${HTPC_CONFIG_DIR}/radarr:/config"
- "${HTPC_COMPLETED_DIR}:/completed"
- "${HTPC_MOVIE_DIR}:/movies"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7878"]
interval: 2m
timeout: 5s
retries: 3
start_period: 1m
deploy:
restart_policy:
condition: on-failure
labels:
- traefik.enable=true
- traefik.http.routers.radarr.entrypoints=websecure
- traefik.http.routers.radarr.rule=Host(`radarr.${HTPC_DOMAIN}`)
- traefik.http.routers.radarr.tls=true
- traefik.http.routers.radarr.middlewares=auth
- traefik.http.services.radarr.loadbalancer.server.port=7878
networks:
overlay_network:
external: true