Compose-Examples/examples/sonarr/docker-compose.yml
2023-02-28 12:18:29 -06:00

16 lines
533 B
YAML

version: "2.1"
services:
sonarr:
image: cr.hotio.dev/hotio/sonarr
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/configg:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/tv:/data/tv
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/downloads:/downloads # Should be the same as the download client's folder
ports:
- 8989:8989
restart: unless-stopped