2024-12-02 18:18:35 +00:00
|
|
|
|
# documentation: https://hub.docker.com/r/linuxserver/radarr
|
|
|
|
|
|
# slogan: Radarr - A fork of Sonarr to work with movies à la Couchpotato.
|
2025-08-17 16:23:57 +00:00
|
|
|
|
# category: media
|
2024-12-02 18:18:35 +00:00
|
|
|
|
# tags: media, server, movies
|
|
|
|
|
|
# logo: svgs/radarr.svg
|
|
|
|
|
|
# port: 7878
|
|
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
radarr:
|
|
|
|
|
|
image: lscr.io/linuxserver/radarr:latest
|
|
|
|
|
|
environment:
|
2025-08-10 08:10:22 +00:00
|
|
|
|
- SERVICE_URL_RADARR_7878
|
|
|
|
|
|
- _APP_URL=$SERVICE_URL_RADARR
|
2024-12-02 18:18:35 +00:00
|
|
|
|
- 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
|