Skip to content

Commit

Permalink
Add Metabase for analytics and Business Intelligence (laradock#1711)
Browse files Browse the repository at this point in the history
* Include metabase service
* Removing unecessary environment variables
* Update documentation
  • Loading branch information
igorjacauna authored and bestlong committed Jul 29, 2018
1 parent 303dadf commit 8180804
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
13 changes: 13 additions & 0 deletions DOCUMENTATION/content/documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,19 @@ docker-compose up -d netdata

2 - Open your browser and visit the localhost on port **19999**: `http://localhost:19999`

<br>
<a name="Use-Metabase"></a>
## Use Metabase

1 - Run the Metabase Container (`metbase`) with the `docker-compose up` command. Example:

```bash
docker-compose up -d metabase
```

2 - Open your browser and visit the localhost on port **3030**: `http://localhost:3030`

3 - You can use environment to configure Metabase container. See docs in: [Running Metabase on Docker](https://www.metabase.com/docs/v0.12.0/operations-guide/running-metabase-on-docker.html)



Expand Down
13 changes: 13 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -876,3 +876,16 @@ services:
- backend
depends_on:
- mongo

### Metabase #################################################
metabase:
image: metabase/metabase:latest
environment:
- MB_DB_FILE=/metabase-data/${METABASE_DB_FILE}
ports:
- ${METABASE_PORT}:3000
volumes:
- ${DATA_PATH_HOST}/metabase-data:/metabase-data
networks:
- backend

5 changes: 5 additions & 0 deletions env-example
Original file line number Diff line number Diff line change
Expand Up @@ -402,3 +402,8 @@ MONGO_WEBUI_PORT=3000
MONGO_WEBUI_ROOT_URL=http://localhost
MONGO_WEBUI_MONGO_URL=mongodb://mongo:27017/
MONGO_WEBUI_INSTALL_MONGO=false

### METABASE ###############################################
METABASE_PORT=3030
METABASE_DB_FILE=metabase.db
METABASE_JAVA_TIMEZONE=US/Pacific

0 comments on commit 8180804

Please sign in to comment.