Skip to content

daemonless/seerr

Repository files navigation

Seerr

Unified media request management (Plex, Jellyfin, Emby) on FreeBSD.

Port 5055
Registry ghcr.io/daemonless/seerr
Docs daemonless.io/images/seerr
Source https://github.com/seerr-team/seerr
Website https://seerr.io/

Deployment

Podman Compose

services:
  seerr:
    image: ghcr.io/daemonless/seerr:latest
    container_name: seerr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=UTC
    volumes:
      - /path/to/containers/seerr:/config
    ports:
      - 5055:5055
    restart: unless-stopped

Podman CLI

podman run -d --name seerr \
  -p 5055:5055 \
  -e PUID=@PUID@ \
  -e PGID=@PGID@ \
  -e TZ=@TZ@ \
  -v /path/to/containers/seerr:/config \
  ghcr.io/daemonless/seerr:latest

Access at: http://localhost:5055

Ansible

- name: Deploy seerr
  containers.podman.podman_container:
    name: seerr
    image: ghcr.io/daemonless/seerr:latest
    state: started
    restart_policy: always
    env:
      PUID: "@PUID@"
      PGID: "@PGID@"
      TZ: "@TZ@"
    ports:
      - "5055:5055"
    volumes:
      - "/path/to/containers/seerr:/config"

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 and database directory

Ports

Port Protocol Description
5055 TCP Web UI

Notes

  • Architectures: amd64
  • User: bsd (UID/GID set via PUID/PGID)
  • Base: Built on ghcr.io/daemonless/base (FreeBSD)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors