chore(deps): update metabase/metabase docker tag to v0.51.1 (#2368)

* chore(deps): update metabase/metabase docker tag to v0.51.1

* 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>
This commit is contained in:
renovate[bot]
2024-10-24 11:12:11 +08:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> github-action update-app-version
parent b815dad8c5
commit a4f3009174
2 changed files with 1 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
services:
metabase:
image: metabase/metabase:v0.51.1
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