mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
dbaddee57a
* chore(deps): update metabase/metabase docker tag to v0.49.8 * 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
731 B
YAML
29 lines
731 B
YAML
services:
|
|
metabase:
|
|
image: metabase/metabase:v0.49.8
|
|
container_name: ${CONTAINER_NAME}
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:3000
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
volumes:
|
|
- ./data/metabase:/metabase
|
|
- ./data/metabase-data:/metabase-data
|
|
environment:
|
|
MB_DB_TYPE: mysql
|
|
MB_DB_DBNAME: ${PANEL_DB_NAME}
|
|
MB_DB_PORT: 3306
|
|
MB_DB_USER: ${PANEL_DB_USER}
|
|
MB_DB_PASS: ${PANEL_DB_USER_PASSWORD}
|
|
MB_DB_HOST: ${PANEL_DB_HOST}
|
|
labels:
|
|
createdBy: "Apps"
|
|
healthcheck:
|
|
test: curl --fail -I http://localhost:3000/api/health || exit 1
|
|
interval: 15s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
1panel-network:
|
|
external: true |