-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
23 lines (23 loc) · 948 Bytes
/
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
version: '3.9'
services:
linuxserver:
image: lscr.io/linuxserver/radarr:latest
restart: always
volumes:
- './config:/config' # Point to config folder you may want a volume
- '/Videos/Movies:/Movies' # Point to your Films or media
- '/Downloads:/downloads' # Point to your Downloads
- '/Archive/Backup:/backup' # Point to your backup/Archive
environment:
- TZ=Europe/London #Set you TZ
- PGID=123 #your UUID
- PUID=254 #your GUID
ports:
- '7878:7878' # Change Left for host port change
container_name: Radarr_Movies # Docker Container Name
hostname: Radarr_Movies # Docker Hostname
healthcheck: # Docker Health check
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:7878/health"]
interval: 30s
timeout: 10s
retries: 5