Files
appstore/apps/easybot/full/docker-compose.yml
T
okxlin f0bee71d93 Fix conditional app PR follow-ups
Update EasyBot to the official miuxue/easybot image and separate bridge, web, and HTTP endpoint ports.

Update GoTab to the available doxwant/gotab:1.6.1.6 tag, pin DBX to t8y2/dbx:0.5.36, and fix ESPHome environment variable names for the current official image.

Related source PRs: #3306, #3457, #3945, #3534.
2026-06-23 00:03:27 +08:00

28 lines
769 B
YAML

services:
easybot:
image: "miuxue/easybot:full"
container_name: ${CONTAINER_NAME}
restart: unless-stopped
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_BRIDGE}:${PANEL_APP_PORT_BRIDGE}"
- "${PANEL_APP_PORT_WEB}:${PANEL_APP_PORT_WEB}"
- "${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}"
volumes:
- ./data:/app/appdata
- ./logs:/app/logs
environment:
- TZ=${TZ}
- ServerOptions__Host=0.0.0.0
- ServerOptions__Port=${PANEL_APP_PORT_BRIDGE}
- Kestrel__Endpoints__web_api__Url=http://0.0.0.0:${PANEL_APP_PORT_WEB}
- Kestrel__Endpoints__web_app__Url=http://0.0.0.0:${PANEL_APP_PORT_HTTP}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true