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