mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-19 15:40:31 +08:00
30 lines
744 B
YAML
30 lines
744 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
metabase:
|
||
|
image: metabase/metabase:v0.47.2
|
||
|
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
|