Files
coolify/templates/compose/sonarr.yaml
Régis Tremblay Lefrançois b08f32508c added sonarr
2024-12-02 13:14:00 -05:00

25 lines
935 B
YAML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# documentation: https://hub.docker.com/r/linuxserver/sonarr
# slogan: Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.
# tags: media, server, tv
# logo: svgs/sonarr.svg
# port: 8989
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
environment:
- SERVICE_FQDN_SONARR_8989
- _APP_URL=$SERVICE_FQDN_SONARR
- PUID=1000
- PGID=1000
- TZ=${TZ:-America/Toronto}
volumes:
- sonarr-config:/config
# - sonarr-tv:/tv #optional
# - downloads:/downloads #optional
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8989/ping"]
interval: 2s
timeout: 10s
retries: 15