You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-11-25 22:22:29 +02:00
add metabase
This commit is contained in:
@@ -276,6 +276,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] jenkins
|
- [x] jenkins
|
||||||
- [x] jupyter/notebook
|
- [x] jupyter/notebook
|
||||||
- [x] kylemanna/openvpn
|
- [x] kylemanna/openvpn
|
||||||
|
- [x] metabase/metabase
|
||||||
- [x] metasploitframework/metasploit-framework :skull:
|
- [x] metasploitframework/metasploit-framework :skull:
|
||||||
- [x] minio/minio
|
- [x] minio/minio
|
||||||
- [x] mongo
|
- [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
|
||||||
Reference in New Issue
Block a user