Files
coolify/templates/compose/radarr.yaml
Régis Tremblay Lefrançois 63fb9e9f40 added radarr
2024-12-02 13:18:35 -05:00

25 lines
693 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/radarr
# slogan: Radarr - A fork of Sonarr to work with movies à la Couchpotato.
# tags: media, server, movies
# logo: svgs/radarr.svg
# port: 7878
services:
radarr:
image: lscr.io/linuxserver/radarr:latest
environment:
- SERVICE_FQDN_RADARR_7878
- _APP_URL=$SERVICE_FQDN_RADARR
- PUID=1000
- PGID=1000
- TZ=${TZ:-America/Toronto}
volumes:
- radarr-config:/config
# - radarr-movies:/movies #optional
# - downloads:/downloads #optional
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7878/ping"]
interval: 2s
timeout: 10s
retries: 15