Initial commit

This commit is contained in:
Daniel López García
2021-06-23 12:17:01 +02:00
parent 09036a8016
commit 6815c3816a
10 changed files with 804 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
version: "3.8"
networks:
k6:
grafana:
services:
influxdb:
image: influxdb:latest
networks:
- k6
- grafana
ports:
- "8086:8086"
environment:
- INFLUXDB_DB=k6
grafana:
image: grafana/grafana:latest
networks:
- grafana
ports:
- "3000:3000"
environment:
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_BASIC_ENABLED=false
volumes:
- ./shared/grafana:/etc/grafana/provisioning/
simulado:
image : ldabiralai/simulado:latest
networks:
- k6
ports:
- "3001:80"
volumes:
- ./shared/simulado:/app
command: ./bin/simulado -f /app/mocks.json
k6:
image: loadimpact/k6:latest
networks:
- k6
ports:
- "6565:6565"
volumes:
- ./shared/k6:/scripts
environment:
- K6_OUT=influxdb=http://influxdb:8086/k6