20 lines
438 B
YAML
20 lines
438 B
YAML
|
---
|
||
|
services:
|
||
|
jellyfin:
|
||
|
image: linuxserver/jellyfin:latest
|
||
|
container_name: jellyfin
|
||
|
ports:
|
||
|
- "8096:8096"
|
||
|
- "1900:1900/udp"
|
||
|
- "7359:7359/udp"
|
||
|
networks:
|
||
|
- public
|
||
|
volumes:
|
||
|
- "${DOCKER_STORAGE_PATH}/jellyfin:/config"
|
||
|
- "${MEDIA_PATH}:/data/media"
|
||
|
environment:
|
||
|
- "JELLYFIN_PublishedServerUrl=https://jellyfin.${DOMAIN}"
|
||
|
profiles:
|
||
|
- base
|
||
|
restart: unless-stopped
|