Files
appstore/apps/bokebox/1.0.0/docker-compose.yml
T
okxlin e4ff477782 fix(bokebox): make first-run deployment healthy
Disable the upstream healthcheck that returns 500 before optional TTS configuration, add lifecycle scaffolding and usage guidance, and compress the application logo.\n\nCo-authored-by: Lan <hhxk666@gmail.com>
2026-07-21 21:44:24 +08:00

24 lines
573 B
YAML

services:
bokebox:
image: ghcr.io/vastsa/bokebox:1.0.0
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8787"
environment:
HOST: 0.0.0.0
PORT: 8787
volumes:
- ./data:/app/storage
# Upstream /api/health currently depends on an optional TTS provider and
# returns 500 before first-run configuration, while the web UI is usable.
healthcheck:
disable: true
labels:
createdBy: Apps
networks:
1panel-network:
external: true