17 lines
343 B
YAML
17 lines
343 B
YAML
version: '3'
|
|
|
|
services:
|
|
jellyfin:
|
|
container_name: jellyfin
|
|
image: lscr.io/linuxserver/jellyfin:latest
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- JELLYFIN_PublishedServerUrl=192.168.1.33
|
|
ports:
|
|
- 8096:8096
|
|
restart: always
|
|
volumes:
|
|
- ./appdata/jellyfin/config:/config
|