mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-26 00:01:06 +00:00
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>
24 lines
573 B
YAML
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
|