mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
add metabase
This commit is contained in:
parent
950f131bcd
commit
97ab8fd340
@ -276,6 +276,7 @@ A collection of delicious docker recipes.
|
||||
- [x] jenkins
|
||||
- [x] jupyter/notebook
|
||||
- [x] kylemanna/openvpn
|
||||
- [x] metabase/metabase
|
||||
- [x] metasploitframework/metasploit-framework :skull:
|
||||
- [x] minio/minio
|
||||
- [x] mongo
|
||||
|
6
metabase/README.md
Normal file
6
metabase/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
metabase
|
||||
========
|
||||
|
||||
[Metabase][1] is the easy, open source way for everyone in your company to ask questions and learn from data.
|
||||
|
||||
[1]: https://www.metabase.com
|
28
metabase/docker-compose.yml
Normal file
28
metabase/docker-compose.yml
Normal file
@ -0,0 +1,28 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
|
||||
metabase:
|
||||
image: metabase/metabase
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
- MB_DB_TYPE=postgres
|
||||
- MB_DB_DBNAME=metabase
|
||||
- MB_DB_HOST=postgres
|
||||
- MB_DB_PORT=5432
|
||||
- MB_DB_USER=root
|
||||
- MB_DB_PASS=root
|
||||
depends_on:
|
||||
- postgres
|
||||
restart: unless-stopped
|
||||
|
||||
postgres:
|
||||
image: postgres:alpine
|
||||
volumes:
|
||||
- ./data:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_USER=root
|
||||
- POSTGRES_PASSWORD=root
|
||||
- POSTGRES_DB=metabase
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user