File tree Expand file tree Collapse file tree 5 files changed +9
-1
lines changed Expand file tree Collapse file tree 5 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ ARG DEBIAN_FRONTEND=noninteractive
8
8
# Set Grafana options
9
9
ENV GF_ENABLE_GZIP="true"
10
10
ENV GF_USERS_DEFAULT_THEME="light"
11
+ ENV GF_FEATURE_TOGGLES_ENABLE="ngalert"
12
+ ENV GF_PLUGINS_PLUGIN_ADMIN_ENABLED="true"
11
13
12
14
# Paths
13
15
ENV GF_PATHS_PROVISIONING="/etc/grafana/provisioning"
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ services:
19
19
- GF_ENABLE_GZIP=true
20
20
- GF_USERS_DEFAULT_THEME=light
21
21
- GF_INSTALL_PLUGINS=redis-app
22
+ - GF_FEATURE_TOGGLES_ENABLE=ngalert
23
+ - GF_PLUGINS_PLUGIN_ADMIN_ENABLED=true
22
24
volumes :
23
25
- ./provisioning:/etc/grafana/provisioning
24
26
# Uncomment to preserve Grafana configuration
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ services:
23
23
- GF_ENABLE_GZIP=true
24
24
- GF_USERS_DEFAULT_THEME=light
25
25
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=redis-app,redis-datasource
26
+ - GF_FEATURE_TOGGLES_ENABLE=ngalert
27
+ - GF_PLUGINS_PLUGIN_ADMIN_ENABLED=true
26
28
# Uncomment to run in debug mode
27
29
# - GF_LOG_LEVEL=debug
28
30
volumes :
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ services:
23
23
- GF_ENABLE_GZIP=true
24
24
- GF_USERS_DEFAULT_THEME=light
25
25
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=redis-app,redis-datasource
26
+ - GF_FEATURE_TOGGLES_ENABLE=ngalert
27
+ - GF_PLUGINS_PLUGIN_ADMIN_ENABLED=true
26
28
# Uncomment to run in debug mode
27
29
# - GF_LOG_LEVEL=debug
28
30
volumes :
Original file line number Diff line number Diff line change 25
25
"format" : " prettier --write \" **\" " ,
26
26
"sign" : " grafana-toolkit plugin:sign" ,
27
27
"start" : " docker-compose up" ,
28
- "start:dev" : " docker-compose -f docker-compose/dev.yml up" ,
28
+ "start:dev" : " docker-compose -f docker-compose/dev.yml pull && docker-compose -f docker-compose/dev.yml up" ,
29
29
"start:master" : " docker-compose -f docker-compose/master.yml pull && docker-compose -f docker-compose/master.yml up" ,
30
30
"stop" : " docker-compose down" ,
31
31
"stop:dev" : " docker-compose -f docker-compose/dev.yml down" ,
You can’t perform that action at this time.
0 commit comments