feat: Add Metabase as a new service
Adds the Metabase service to the Docker Compose setup. - Creates a compose.yaml and .env.example for Metabase. - Adds Metabase to the list of deployed services in the Ansible configuration. - Updates .gitignore
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,5 +1,7 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
.env
|
.env
|
||||||
|
oauth2-proxy.cfg
|
||||||
|
|
||||||
CLAUDE.md
|
CLAUDE.md
|
||||||
oauth2-proxy.cfg
|
GEMINI.md
|
||||||
|
|||||||
6
docker_compose_applications/metabase/.env.example
Normal file
6
docker_compose_applications/metabase/.env.example
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
MB_DB_TYPE=postgres
|
||||||
|
MB_DB_DBNAME=metabase
|
||||||
|
MB_DB_PORT=5432
|
||||||
|
MB_DB_USER=metabase
|
||||||
|
MB_DB_PASS=changeme
|
||||||
|
MB_DB_HOST=your-postgres-host
|
||||||
@@ -7,3 +7,5 @@ docker_compose__projects:
|
|||||||
files_directory: ../docker_compose_applications/n8n
|
files_directory: ../docker_compose_applications/n8n
|
||||||
- name: oauth2-proxy
|
- name: oauth2-proxy
|
||||||
files_directory: ../docker_compose_applications/oauth2-proxy
|
files_directory: ../docker_compose_applications/oauth2-proxy
|
||||||
|
- name: metabase
|
||||||
|
files_directory: ../docker_compose_applications/metabase
|
||||||
|
|||||||
Reference in New Issue
Block a user