We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b565012 commit 9c6b1d7Copy full SHA for 9c6b1d7
docker-compose.yml
@@ -43,6 +43,11 @@ services:
43
environment:
44
- "GF_DEFAULT_APP_MODE=development"
45
- "GF_LOG_LEVEL=debug"
46
+ - GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
47
+ - GF_AUTH_ANONYMOUS_ENABLED=true
48
+ - GF_AUTH_BASIC_ENABLED=false
49
+ volumes:
50
+ - ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources
51
52
app:
53
build: ./app
grafana/provisioning/datasources/datasources.yaml
@@ -0,0 +1,11 @@
1
+apiVersion: 1
2
+
3
+datasources:
4
+ - name: Prometheus
5
+ type: prometheus
6
+ access: proxy
7
+ orgId: 1
8
+ url: http://prometheus:9090
9
+ basicAuth: false
10
+ isDefault: true
11
+ editable: true
0 commit comments