modification of linuxserver/radarr to work within my environment
221
Slight modification of the linuxserver/radarr image.
Here's the content of the Dockerfile I created for my use:
FROM linuxserver/radarr
RUN groupadd -g 489 plex && useradd --no-log-init -r -g 489 -u 495 plex
The uid and gid is spcecific to my usage case at home.
Here's the script I use to start up the container.
docker run
--name=radarr
--net home-net
--detach
-e PUID=495
-e PGID=489
-e TZ=America/Denver
-p 7878:7878
-v /root/docker/radarr/config:/config
-v /root/docker/radarr/mp4_automator:/config_mp4_automator
-v /data/sabnzb/movies:/movies
-v /data/sabnzb/downloads:/downloads
--restart unless-stopped
skipchang/radarr
I created an internal docker network, home-net. All three of my containers (radarr, sonarr and sabnzbd) are on the private bridge. This allows easier communications between the containers.
Content type
Image
Digest
Size
171.9 MB
Last updated
over 6 years ago
docker pull skipchang/radarr