Dispatcharr — stream dispatching and channel management.
| Port | 9191 |
| Registry | ghcr.io/daemonless/dispatcharr |
| Source | https://github.com/Dispatcharr/Dispatcharr |
| Website | https://dispatcharr.io/ |
| Tag | Description | Best For |
|---|---|---|
latest |
FreeBSD Port. Built from latest FreeBSD packages. | Most users. Matches Linux Docker behavior. |
Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.
services:
dispatcharr:
image: "ghcr.io/daemonless/dispatcharr:latest"
container_name: dispatcharr
environment:
- TZ=UTC # Timezone (e.g. America/New_York)
- POSTGRES_DB=dispatcharr # PostgreSQL database name (default: dispatcharr)
- POSTGRES_USER=dispatcharr # PostgreSQL username (default: dispatcharr)
- POSTGRES_PASSWORD=dispatcharr # PostgreSQL password (default: dispatcharr)
- CELERY_NICE_LEVEL=5 # niceness for Celery workers (default: 5)
volumes:
- "/path/to/containers/dispatcharr/data:/data"
ports:
- "9191:9191"
annotations:
org.freebsd.jail.allow.sysvipc: "true"
restart: unless-stopped.env:
DIRECTOR_PROJECT=dispatcharr
TZ=UTC
POSTGRES_DB=dispatcharr
POSTGRES_USER=dispatcharr
POSTGRES_PASSWORD=dispatcharr
CELERY_NICE_LEVEL=5
appjail-director.yml:
options:
- virtualnet: ':<random> default'
- nat:
services:
dispatcharr:
name: dispatcharr
options:
- container: 'boot args:--pull'
- expose="9191:9191 proto:tcp" \
oci:
user: root
environment:
- TZ: !ENV '${TZ}'
- POSTGRES_DB: !ENV '${POSTGRES_DB}'
- POSTGRES_USER: !ENV '${POSTGRES_USER}'
- POSTGRES_PASSWORD: !ENV '${POSTGRES_PASSWORD}'
- CELERY_NICE_LEVEL: !ENV '${CELERY_NICE_LEVEL}'
volumes:
- dispatcharr_data: /data
volumes:
dispatcharr_data:
device: '/path/to/containers/dispatcharr/data'Makejail:
ARG tag=latest
OPTION overwrite=force
OPTION from=ghcr.io/daemonless/dispatcharr:${tag}
SET allow.sysvipc=1
Note: Exposing ports in AppJail means that your service can be reached from remote hosts. If that is not your intention, do not expose the ports and communicate with the service using the IPv4 address assigned by the virtual network.
podman run -d --name dispatcharr \
-p 9191:9191 \
--annotation 'org.freebsd.jail.allow.sysvipc=true' \
-e TZ=UTC \
-e POSTGRES_DB=dispatcharr \
-e POSTGRES_USER=dispatcharr \
-e POSTGRES_PASSWORD=dispatcharr \
-e CELERY_NICE_LEVEL=5 \
-v /path/to/containers/dispatcharr/data:/data \
ghcr.io/daemonless/dispatcharr:latestappjail oci run -Pd \
-o overwrite=force \
-o container="args:--pull" \
-o virtualnet=":<random> default" \
-o nat \
-o expose="9191:9191 proto:tcp" \
-e TZ=UTC \
-e POSTGRES_DB=dispatcharr \
-e POSTGRES_USER=dispatcharr \
-e POSTGRES_PASSWORD=dispatcharr \
-e CELERY_NICE_LEVEL=5 \
-o fstab="/path/to/containers/dispatcharr/data /data <pseudofs>" \
ghcr.io/daemonless/dispatcharr:latest dispatcharrNote: Exposing ports in AppJail means that your service can be reached from remote hosts. If that is not your intention, do not expose the ports and communicate with the service using the IPv4 address assigned by the virtual network.
- name: Deploy dispatcharr
containers.podman.podman_container:
name: dispatcharr
image: "ghcr.io/daemonless/dispatcharr:latest"
state: started
restart_policy: always
env:
TZ: "UTC"
POSTGRES_DB: "dispatcharr"
POSTGRES_USER: "dispatcharr"
POSTGRES_PASSWORD: "dispatcharr"
CELERY_NICE_LEVEL: "5"
ports:
- "9191:9191"
volumes:
- "/path/to/containers/dispatcharr/data:/data"
annotation:
org.freebsd.jail.allow.sysvipc: "true"Access at: http://localhost:9191
| Variable | Default | Description |
|---|---|---|
TZ |
UTC |
Timezone (e.g. America/New_York) |
POSTGRES_DB |
dispatcharr |
PostgreSQL database name (default: dispatcharr) |
POSTGRES_USER |
dispatcharr |
PostgreSQL username (default: dispatcharr) |
POSTGRES_PASSWORD |
dispatcharr |
PostgreSQL password (default: dispatcharr) |
CELERY_NICE_LEVEL |
5 |
niceness for Celery workers (default: 5) |
| Path | Description |
|---|---|
/data |
Persistent data — PostgreSQL cluster, media, backups, logos |
| Port | Protocol | Description |
|---|---|---|
9191 |
TCP | Web UI |
Work in Progress: This is an all-in-one (AIO) image — PostgreSQL, Redis, Nginx, Celery, Daphne, and the Django app all run inside a single container.
First run: the container initialises a fresh PostgreSQL cluster under /data/postgres
and runs Django migrations automatically. This takes a few extra seconds on first start.
PostgreSQL requires allow.sysvipc in the jail. Add the annotation to your podman run
command or compose deploy block:
podman run --annotation 'org.freebsd.jail.allow.sysvipc=true' ...DJANGO_SECRET_KEY: if not provided, a random key is auto-generated on first start
and persisted to /data/secret_key. Set it explicitly if you need a stable key across
container recreations.
AI channel matching (torch / sentence-transformers) is not available in this build — PyTorch exists in FreeBSD ports but Python 3.13 support is not yet available (FreeBSD bug #285957, expected ~2027). The rest of Dispatcharr is fully functional.
Architectures: amd64
User: bsd (UID/GID via PUID/PGID, defaults to 1000:1000)
Base: FreeBSD 15.1
Need help? Join our Discord community.