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