mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
2b86795df7
* chore(deps): update halohub/halo-pro docker tag to v2.15.2 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
29 lines
831 B
YAML
29 lines
831 B
YAML
services:
|
|
halo:
|
|
image: halohub/halo-pro:2.15.2
|
|
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:${PANEL_DB_TYPE}://${PANEL_DB_HOST}:${PANEL_DB_PORT}/${PANEL_DB_NAME}
|
|
- --spring.r2dbc.username=${PANEL_DB_USER}
|
|
- --spring.r2dbc.password=${PANEL_DB_USER_PASSWORD}
|
|
- --spring.sql.init.platform=${PANEL_DB_TYPE}
|
|
- --halo.external-url=${HALO_EXTERNAL_URL}
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true
|