Initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user