Files
coolify/templates/compose/radarr.yaml
2025-08-17 18:23:57 +02:00

26 lines
709 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.
# category: media
# tags: media, server, movies
# logo: svgs/radarr.svg
# port: 7878
services:
radarr:
image: lscr.io/linuxserver/radarr:latest
environment:
- SERVICE_URL_RADARR_7878
- _APP_URL=$SERVICE_URL_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