mirror of
https://github.com/debricked/dmarc-visualizer.git
synced 2026-02-17 07:03:57 +00:00
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
||||
/files/
|
||||
/output_files/
|
||||
/parsedmarc/GeoLite2-Country*
|
||||
/elastic_data/
|
||||
parsedmarc.ini
|
||||
|
||||
@@ -5,15 +5,17 @@ services:
|
||||
volumes:
|
||||
- ./files:/input:ro
|
||||
- ./output_files:/output
|
||||
command: parsedmarc -c /parsedmarc.ini /input/*
|
||||
command: parsedmarc -c /parsedmarc.ini /input/* --debug
|
||||
depends_on:
|
||||
- elasticsearch
|
||||
restart: on-failure
|
||||
|
||||
elasticsearch:
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.1
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.5
|
||||
environment:
|
||||
- discovery.type=single-node
|
||||
volumes:
|
||||
- ./elastic_data:/usr/share/elasticsearch/data
|
||||
|
||||
grafana:
|
||||
build: ./grafana/
|
||||
|
||||
@@ -9,7 +9,7 @@ datasources:
|
||||
database: '[dmarc_aggregate-]YYYY-MM-DD'
|
||||
isDefault: true
|
||||
jsonData:
|
||||
esVersion: 70
|
||||
esVersion: 7.17.5
|
||||
timeField: 'date_range'
|
||||
interval: 'Daily'
|
||||
version: 1
|
||||
@@ -22,7 +22,7 @@ datasources:
|
||||
database: '[dmarc_forensic-]YYYY-MM-DD'
|
||||
isDefault: false
|
||||
jsonData:
|
||||
esVersion: 70
|
||||
esVersion: 7.17.5
|
||||
timeField: 'arrival_date'
|
||||
interval: 'Daily'
|
||||
version: 1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM python:alpine
|
||||
FROM python:3.9-alpine3.16
|
||||
|
||||
RUN apk add --update --no-cache libxml2-dev libxslt-dev
|
||||
RUN apk add --update --no-cache --virtual .build_deps build-base libffi-dev \
|
||||
|
||||
Reference in New Issue
Block a user