docker-store/apps/jellyfin/10.10.3/docker-compose.yml

22 lines
553 B
YAML
Raw Normal View History

2025-01-27 23:24:38 +08:00
networks:
chish-network:
external: true
services:
jellyfin:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- chish-network
ports:
- "${PANEL_APP_PORT_HTTP}:8096"
volumes:
- "./data/config:/config"
- "${CACHE_FOLDER_PATH}:/cache"
- "${MEDIA_FOLDER_PATH}:/media/media"
devices:
- /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
#- /dev/vchiq:/dev/vchiq # MMAL/OMX on Raspberry Pi
image: "jellyfin/jellyfin:10.10.3"
labels:
createdBy: "Apps"