mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 00:26:55 +08:00
8e1212a42f
* chore(deps): update metabase/metabase docker tag to v0.49.3 * 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>
30 lines
744 B
YAML
30 lines
744 B
YAML
version: '3'
|
|
services:
|
|
metabase:
|
|
image: metabase/metabase:v0.49.3
|
|
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 |