wiki/docs/portainer-stacks/jellyfin.md
Sthope 50fc33e254
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2022-05-01 10:47:48 +02:00

26 lines
579 B
Markdown

Portainer Stack:
```yaml
version: "3.8"
services:
jellyfin:
image: linuxserver/jellyfin:latest
container_name: jellyfin
network_mode: bridge
environment:
- PUID="${PUID-1000}"
- PGID="${PGID-1000}"
- TZ="${TZ-Europe/Amsterdam}"
# - JELLYFIN_PublishedServerUrl=
volumes:
- /jellyfin:/config
- /opt/vc/lib:/opt/vc/lib
- /media:/HTPC
ports:
- 8096:8096
- 8920:8920
- 7359:7359/udp
- 1900:1900/udp
restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.enable=true
```