mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
466 B
26 lines
466 B
version: '3.4'
|
|
|
|
networks:
|
|
grafana:
|
|
|
|
services:
|
|
influxdb:
|
|
image: influxdb:latest
|
|
networks:
|
|
- grafana
|
|
ports:
|
|
- "8086:8086"
|
|
environment:
|
|
- INFLUXDB_DB=k6
|
|
- INFLUXDB_HTTP_MAX_BODY_SIZE=0
|
|
|
|
grafana:
|
|
image: grafana/grafana:latest
|
|
networks:
|
|
- grafana
|
|
ports:
|
|
- "4000:3000"
|
|
environment:
|
|
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
|
|
- GF_AUTH_ANONYMOUS_ENABLED=true
|
|
- GF_AUTH_BASIC_ENABLED=false
|
|
|