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.
22 lines
517 B
YAML
22 lines
517 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
homarr:
|
|
container_name: homarr
|
|
env_file:
|
|
- ./envs/global.env
|
|
- .env
|
|
image: ghcr.io/ajnart/homarr:0.15.10
|
|
labels:
|
|
createdBy: Apps
|
|
network_mode: ${NETWORK_MODE}
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:7575
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ${HOMARR_ROOT_PATH}/configs:/app/data/configs
|
|
- ${HOMARR_ROOT_PATH}/icons:/app/public/icons
|
|
- ${HOMARR_ROOT_PATH}/data:/data
|