-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcompose.yaml
More file actions
29 lines (27 loc) · 781 Bytes
/
compose.yaml
File metadata and controls
29 lines (27 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "3.8"
services:
scapinoculars:
image: ghcr.io/jritter/scapinoculars:latest
restart: always
volumes:
- "./resources/reports:/opt/go/resources/reports:Z"
- "./resources/output:/opt/go/resources/output:Z"
ports:
- "2112:2112"
environment:
REPORT_OUTPUT_DIR: resources/output
scapinoculars-prometheus:
image: quay.io/prometheus/prometheus:latest
restart: always
volumes:
- "./configs/prometheus:/etc/prometheus:Z"
ports:
- "9090:9090"
scapinoculars-grafana:
image: docker.io/grafana/grafana
restart: always
volumes:
- "./configs/grafana/provisioning:/etc/grafana/provisioning:Z"
- "./configs/grafana/dashboards:/etc/grafana/dashboards:Z"
ports:
- "3000:3000"