-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.radarr.yaml
36 lines (35 loc) · 1.04 KB
/
compose.radarr.yaml
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
networks:
reverse-proxy:
external: true
services:
radarr:
image: lscr.io/linuxserver/radarr:5.19.3@sha256:620189d67078ddcfeb7a4efa424eb62f827ef734ef1e56980768bf8efd73782a
container_name: radarr
cpus: 1
mem_limit: 4096m
restart: unless-stopped
expose:
- 7878
networks:
- reverse-proxy
healthcheck:
test: ["CMD", "curl", "--fail", "http://radarr:7878/ping"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
start_interval: 5s
volumes:
- ~/home-server/radarr/config:/config
- /mnt/raid/downloads:/downloads
- /mnt/raid/media/movies:/movies
environment:
- PGID=${GID}
- PUID=${UID}
- TZ=${TZ}
labels:
- traefik.enable=true
- traefik.http.routers.radarr.entrypoints=websecure
- traefik.http.routers.radarr.rule=Host(`radarr.${DOMAIN_NAME}`) || Host(`movies.${DOMAIN_NAME}`)
- traefik.http.routers.radarr.middlewares=chain-no-auth@file
- traefik.http.services.radarr.loadbalancer.server.port=7878