Overseerr media request management on FreeBSD. Deprecated — Overseerr is no longer maintained. Migrate to Seerr: copy /containers/overseerr to /containers/seerr and deploy. Seerr auto-migrates config.
services:
overseerr:
image: ghcr.io/daemonless/overseerr:latest
container_name: overseerr
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/overseerr:/config
ports:
- 5055:5055
restart: unless-stopped
podman run -d --name overseerr \
-p 5055:5055 \
-e PUID=@PUID@ \
-e PGID=@PGID@ \
-e TZ=@TZ@ \
-v /path/to/containers/overseerr:/config \
ghcr.io/daemonless/overseerr:latest
Access at: http://localhost:5055
- name: Deploy overseerr
containers.podman.podman_container:
name: overseerr
image: ghcr.io/daemonless/overseerr:latest
state: started
restart_policy: always
env:
PUID: "@PUID@"
PGID: "@PGID@"
TZ: "@TZ@"
ports:
- "5055:5055"
volumes:
- "/path/to/containers/overseerr:/config"
| 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 |
| Path |
Description |
/config |
Configuration directory |
| Port |
Protocol |
Description |
5055 |
TCP |
Web UI |
- Architectures: amd64
- User:
bsd (UID/GID set via PUID/PGID)
- Base: Built on
ghcr.io/daemonless/base (FreeBSD)