wiki/docs/portainer-stacks/jellyfin.md
Sthope 0f8c1ec52f
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2022-04-27 11:24:06 +02:00

26 lines
551 B
Markdown

Portainer Stack:
```yaml
version: "3.8"
services:
jellyfin:
image: linuxserver/jellyfin:latest
container_name: jellyfin
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- 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
```