mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
412 B
YAML
19 lines
412 B
YAML
5 years ago
|
version: "3"
|
||
|
services:
|
||
|
prometheus:
|
||
|
image: "prometheus:latest"
|
||
|
command:
|
||
|
- "--storage.tsdb.retention=30d"
|
||
|
restart: "on-failure"
|
||
|
volumes:
|
||
|
- "/storage/wubloader-metrics/prometheus:/prometheus"
|
||
|
ports:
|
||
|
- "9090:9090"
|
||
|
grafana:
|
||
|
image: "grafana/grafana"
|
||
|
restart: "on-failure"
|
||
|
volumes:
|
||
|
- "/storage/wubloader-metrics/grafana:/var/lib/grafana"
|
||
|
ports:
|
||
|
- "1338:3000"
|