Skip to content

Commit

Permalink
Update docker-compose.yml
Browse files Browse the repository at this point in the history
Updating to newer elasticsearch version
Changing "Version" on top to 3.5 to ensure running under Ubuntu 18
Run Grafana as root to be able to chmod provision directory for dashboard (whoami still outputs grafana instead of root so I have no Idea why this works)
  • Loading branch information
supaeasy authored Feb 5, 2021
1 parent ddf4109 commit db97861
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.7'
version: '3.5'
services:
parsedmarc:
build: ./parsedmarc/
Expand All @@ -11,14 +11,15 @@ services:
restart: on-failure

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.0
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.1
environment:
- discovery.type=single-node

grafana:
build: ./grafana/
ports:
- 3000:3000
user: root
environment:
GF_INSTALL_PLUGINS: grafana-piechart-panel,grafana-worldmap-panel
GF_AUTH_ANONYMOUS_ENABLED: 'true'

0 comments on commit db97861

Please sign in to comment.