mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: Add extensive collection of application blueprints with Docker Compose configurations
This commit is contained in:
25
blueprints/metabase/docker-compose.yml
Normal file
25
blueprints/metabase/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
metabase:
|
||||
image: metabase/metabase:v0.50.8
|
||||
volumes:
|
||||
- /dev/urandom:/dev/random:ro
|
||||
environment:
|
||||
MB_DB_TYPE: postgres
|
||||
MB_DB_DBNAME: metabaseappdb
|
||||
MB_DB_PORT: 5432
|
||||
MB_DB_USER: metabase
|
||||
MB_DB_PASS: mysecretpassword
|
||||
MB_DB_HOST: postgres
|
||||
healthcheck:
|
||||
test: curl --fail -I http://localhost:3000/api/health || exit 1
|
||||
interval: 15s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
postgres:
|
||||
image: postgres:14
|
||||
environment:
|
||||
POSTGRES_USER: metabase
|
||||
POSTGRES_DB: metabaseappdb
|
||||
POSTGRES_PASSWORD: mysecretpassword
|
||||
|
||||
BIN
blueprints/metabase/metabase.png
Normal file
BIN
blueprints/metabase/metabase.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
12
blueprints/metabase/template.yml
Normal file
12
blueprints/metabase/template.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
variables:
|
||||
main_domain: ${randomDomain}
|
||||
|
||||
config:
|
||||
domains:
|
||||
- serviceName: metabase
|
||||
port: 3000
|
||||
host: ${main_domain}
|
||||
|
||||
env: {}
|
||||
|
||||
mounts: []
|
||||
Reference in New Issue
Block a user