Compose-Examples/examples/sonarr/docker-compose.yml

18 wiersze
535 B
YAML
Czysty Zwykły widok Historia

2023-02-28 18:18:29 +00:00
version: "2.1"
2023-03-01 10:13:28 +00:00
2023-02-28 18:18:29 +00:00
services:
sonarr:
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
- ${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
2023-03-01 10:13:28 +00:00
restart: unless-stopped