Tautulli Plex monitoring on FreeBSD.
services:
tautulli:
image: ghcr.io/daemonless/tautulli:latest
container_name: tautulli
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- TAUTULLI_DOCKER=True
volumes:
- /path/to/containers/tautulli:/config
ports:
- 8181:8181
restart: unless-stopped
podman run -d --name tautulli \
-p 8181:8181 \
-e PUID=@PUID@ \
-e PGID=@PGID@ \
-e TZ=@TZ@ \
-e TAUTULLI_DOCKER=True \
-v /path/to/containers/tautulli:/config \
ghcr.io/daemonless/tautulli:latest
Access at: http://localhost:8181
- name: Deploy tautulli
containers.podman.podman_container:
name: tautulli
image: ghcr.io/daemonless/tautulli:latest
state: started
restart_policy: always
env:
PUID: "@PUID@"
PGID: "@PGID@"
TZ: "@TZ@"
TAUTULLI_DOCKER: "True"
ports:
- "8181:8181"
volumes:
- "/path/to/containers/tautulli:/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 |
TAUTULLI_DOCKER |
True |
Disable internal updater (True/False) |
| Path |
Description |
/config |
Configuration directory |
| Port |
Protocol |
Description |
8181 |
TCP |
Web UI |
- Architectures: amd64
- User:
bsd (UID/GID set via PUID/PGID)
- Base: Built on
ghcr.io/daemonless/base (FreeBSD)