mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 12:52:18 +08:00
22 lines
562 B
YAML
22 lines
562 B
YAML
services:
|
|
jellyfin:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-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.7"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true |