Skip to content

daemonless/radarr

Repository files navigation

Radarr

Radarr movie management on FreeBSD.

Port 7878
Registry ghcr.io/daemonless/radarr
Docs daemonless.io/images/radarr
Source https://github.com/Radarr/Radarr
Website https://radarr.video/

Deployment

Podman Compose

services:
  radarr:
    image: ghcr.io/daemonless/radarr:latest
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=UTC
    volumes:
      - /path/to/containers/radarr:/config
      - /path/to/movies:/movies # optional
      - /path/to/downloads:/downloads # optional
    ports:
      - 7878:7878
    annotations:
      org.freebsd.jail.allow.mlock: "true"
    restart: unless-stopped

Podman CLI

podman run -d --name radarr \
  -p 7878:7878 \
  --annotation 'org.freebsd.jail.allow.mlock=true' \
  -e PUID=@PUID@ \
  -e PGID=@PGID@ \
  -e TZ=@TZ@ \
  -v /path/to/containers/radarr:/config \ 
  -v /path/to/movies:/movies \  # optional
  -v /path/to/downloads:/downloads \  # optional
  ghcr.io/daemonless/radarr:latest

Access at: http://localhost:7878

Ansible

- name: Deploy radarr
  containers.podman.podman_container:
    name: radarr
    image: ghcr.io/daemonless/radarr:latest
    state: started
    restart_policy: always
    env:
      PUID: "@PUID@"
      PGID: "@PGID@"
      TZ: "@TZ@"
    ports:
      - "7878:7878"
    volumes:
      - "/path/to/containers/radarr:/config"
      - "/path/to/movies:/movies" # optional
      - "/path/to/downloads:/downloads" # optional
    annotation:
      org.freebsd.jail.allow.mlock: "true"

Configuration

Environment Variables

Variable Default Description
PUID 1000 User ID for the application process
PGID 1000 Group ID for the application process
TZ UTC Timezone for the container

Volumes

Path Description
/config Configuration directory
/movies Movie library (Optional)
/downloads Download directory (Optional)

Ports

Port Protocol Description
7878 TCP Web UI

Notes

  • User: bsd (UID/GID set via PUID/PGID)
  • Base: Built on ghcr.io/daemonless/base (FreeBSD)
  • .NET App: Requires --annotation 'org.freebsd.jail.allow.mlock=true' and a patched ocijail.