version: '3' services: halo: image: halohub/halo:2.7.0 container_name: ${CONTAINER_NAME} restart: always networks: - 1panel-network volumes: - ./data:/root/.halo2 ports: - ${PANEL_APP_PORT_HTTP}:8090 healthcheck: test: [ "CMD", "curl", "-f", "http://localhost:8090/actuator/health/readiness" ] interval: 30s timeout: 5s retries: 5 start_period: 30s command: - --spring.r2dbc.url=r2dbc:pool:${HALO_PLATFORM}://${PANEL_DB_HOST}:${HALO_DB_PORT}/${PANEL_DB_NAME} - --spring.r2dbc.username=${PANEL_DB_USER} - --spring.r2dbc.password=${PANEL_DB_USER_PASSWORD} - --spring.sql.init.platform=${HALO_PLATFORM} - --halo.external-url=${HALO_EXTERNAL_URL} - --halo.security.initializer.superadminusername=${HALO_ADMIN} - --halo.security.initializer.superadminpassword=${HALO_ADMIN_PASSWORD} labels: createdBy: "Apps" networks: 1panel-network: external: true