This change addresses critical issues in app metadata schema, ensures deterministic process-apps.py outputs, and corrects Docker Compose config errors for select apps. - Ensures all apps' data.yml root and formFields schema required fields are present - Fixes illegal Docker Compose fields (e.g. restart: no → "no", removes obsolete version fields) - Removes illegal " = " in environment variable declarations - Adds missing ports to env templates (e.g. zerotier) - Resolves all validation, duplicate, tag, and basic resource consistency errors - process-apps.py output is now idempotent and repeatable Apps deploy and test through compose config without validation errors.
30 lines
1000 B
YAML
30 lines
1000 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
jellyfin:
|
|
container_name: jellyfin
|
|
devices:
|
|
- /dev/dri:/dev/dri
|
|
environment:
|
|
- ROC_ENABLE_PRE_VEGA=1
|
|
- HTTPS_PROXY=${HTTP_PROXY:-}
|
|
- NO_PROXY=localhost,127.0.0.1,::1
|
|
image: jellyfin/jellyfin:10.11.0
|
|
labels:
|
|
createdBy: Apps
|
|
network_mode: ${NETWORK_MODE}
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:8096
|
|
restart: always
|
|
user: 0:0
|
|
volumes:
|
|
- ${JELLYFIN_ROOT_PATH}/config:/config
|
|
- ${JELLYFIN_ROOT_PATH}/cache:/cache
|
|
- ${JELLYFIN_ROOT_PATH}/media:/media
|
|
- ${JELLYFIN_ROOT_PATH}/config/font:/config/font
|
|
- ${JELLYFIN_ROOT_PATH}/config/dejavu:/usr/share/fonts/truetype/dejavu
|
|
- ${CUSTOM_MOUNT_DIRECTORY_1:-./default_mount_1}:${CUSTOM_MOUNT_DIRECTORY_1:-/default_mount_1}
|
|
- ${CUSTOM_MOUNT_DIRECTORY_2:-./default_mount_2}:${CUSTOM_MOUNT_DIRECTORY_2:-/default_mount_2}
|
|
- ${CUSTOM_MOUNT_DIRECTORY_3:-./default_mount_3}:${CUSTOM_MOUNT_DIRECTORY_3:-/default_mount_3}
|