mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
32 lines
986 B
YAML
32 lines
986 B
YAML
version: '3'
|
|
services:
|
|
halo:
|
|
image: halohub/halo:2.8.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}:${PANEL_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
|