mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-15 05:41:55 +08:00
19 lines
441 B
YAML
19 lines
441 B
YAML
version: '3'
|
|
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"
|
|
image: "jellyfin/jellyfin:10.8.10"
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |