-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
35 lines (34 loc) · 1.03 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: '3'
services:
grafana:
image: grafana/grafana:master
ports:
- '3000:3000'
volumes:
- ./:/var/lib/grafana/plugins/grafana-intersystems-datasource
- grafana-storage:/var/lib/grafana
- ./provisioning:/etc/grafana/provisioning
environment:
- COMPOSE_INTERACTIVE_NO_CLI=1
- TERM=linux
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_BASIC_ENABLED=false
- GF_LOG_LEVEL=debug
- GF_DATAPROXY_LOGGING=true
- GF_FEATURE_TOGGLES_ENABLE=expressions inspect transformations newEdit live
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=grafana-intersystems-datasource
# image: store/intersystems/iris-community:2020.4.0.524.0
iris:
image: intersystemsdc/iris-community
init: true
ports:
- '3081:52773'
- '3082:1972'
volumes:
- ./iris-init.sh:/iris-init.sh
command:
- -a
- iris session iris -U%SYS '##class(Security.Users).UnExpireUserPasswords("*")'
volumes:
grafana-storage: