1
0
Fork 0
docker-compose-templates/services/jellyfin.yml

21 lines
489 B
YAML
Raw Normal View History

2023-12-01 19:42:30 +00:00
---
services:
jellyfin:
2024-08-08 08:29:24 +00:00
image: linuxserver/jellyfin:10.9.9
2023-12-01 19:42:30 +00:00
container_name: jellyfin
ports:
- "8096:8096"
- "1900:1900/udp"
- "7359:7359/udp"
networks:
2023-12-05 09:55:22 +00:00
public:
ipv4_address: 192.168.240.32
2023-12-01 19:42:30 +00:00
volumes:
- "${DOCKER_STORAGE_PATH}/jellyfin:/config"
- "${MEDIA_PATH}:/data/media"
environment:
- "JELLYFIN_PublishedServerUrl=https://jellyfin.${DOMAIN}"
2024-03-07 10:35:59 +00:00
- PUID=${PUID}
- PGID=${PGID}
2023-12-01 19:42:30 +00:00
restart: unless-stopped