26 lines
842 B
YAML
26 lines
842 B
YAML
version: "2"
|
|
services:
|
|
influxdb:
|
|
image: influxdb:1.5-alpine
|
|
# command: influxd -config /etc/influxdb/influxdb.conf
|
|
# ports:
|
|
# - "8086:8086"
|
|
volumes:
|
|
- ./data/influx:/var/lib/influxdb/
|
|
# - "./influxdb.conf:/etc/influxdb/influxdb.con:ro"
|
|
grafana:
|
|
image: grafana/grafana:5.0.4
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
# - "./grafana_etc/:/etc/grafana/"
|
|
- "./data/grafana/:/var/lib/grafana/"
|
|
environment:
|
|
- "GF_SECURITY_ADMIN_USER=root"
|
|
- "GF_SECURITY_ADMIN_PASSWORD=clkl"
|
|
measurement:
|
|
image: docker.clkl.de/uni/wiai/rz/measurement:0.1
|
|
build: .
|
|
command: python measure.py -o /app/log/results.csv -e /app/log/exceptions.log "http://vc.uni-bamberg.de" "https://vc.uni-bamberg.de" "https://fn2stud.zuv.uni-bamberg.de/FN2AUTH/FN2AuthServlet?op=Login" "https://vc.uni-bamberg.de/moodle/"
|
|
volumes:
|
|
- ./log:/app/log |