2023-02-28 18:18:29 +00:00
|
|
|
services:
|
2024-11-04 12:08:51 +00:00
|
|
|
|
2023-02-28 18:18:29 +00:00
|
|
|
sonarr:
|
2024-02-28 00:02:08 +00:00
|
|
|
image: lscr.io/linuxserver/sonarr:latest
|
2023-02-28 18:18:29 +00:00
|
|
|
container_name: sonarr
|
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
2023-03-01 10:13:28 +00:00
|
|
|
- TZ=Europe/Berlin
|
2023-02-28 18:18:29 +00:00
|
|
|
volumes:
|
2023-03-01 10:13:28 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/config:/config
|
2024-02-28 00:02:08 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/tv:/tv
|
2023-02-28 18:18:29 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/downloads:/downloads # Should be the same as the download client's folder
|
|
|
|
ports:
|
|
|
|
- 8989:8989
|
2024-11-04 12:08:51 +00:00
|
|
|
expose:
|
|
|
|
- 8989
|
2023-03-01 10:13:28 +00:00
|
|
|
restart: unless-stopped
|