mirror of
https://github.com/debricked/dmarc-visualizer.git
synced 2026-02-17 07:03:57 +00:00
24 lines
549 B
YAML
24 lines
549 B
YAML
version: '3.7'
|
|
services:
|
|
parsedmarc:
|
|
build: ./parsedmarc/
|
|
volumes:
|
|
- ./files:/input:ro
|
|
- ./output_files:/output
|
|
command: parsedmarc -c /parsedmarc.ini /input/*
|
|
depends_on:
|
|
- elasticsearch
|
|
|
|
elasticsearch:
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.0
|
|
environment:
|
|
- discovery.type=single-node
|
|
|
|
grafana:
|
|
build: ./grafana/
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
GF_INSTALL_PLUGINS: grafana-piechart-panel,grafana-worldmap-panel
|
|
GF_AUTH_ANONYMOUS_ENABLED: 'true'
|