-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.env.example
35 lines (30 loc) · 1.18 KB
/
.env.example
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
GRAFANA_ADMIN_USER=medic
GRAFANA_ADMIN_PASSWORD=password
#GRAFANA_VERSION=latest
GRAFANA_PORT=3000
# Use 0.0.0.0 to expose to LAN/Internet, use 127.0.0.1 to
# use with reverse proxy (Caddy, Traefik etc)
GRAFANA_BIND=127.0.0.1
# Note: Relative paths do not work with docker-compose v2.x. In that case, simply use an absolute path.
GRAFANA_DATA="./grafana/data"
# Comma separated list of plugins to install
GRAFANA_PLUGINS=grafana-discourse-datasource
#JSON_EXPORTER_VERSION=latest
#PROMETHEUS_VERSION=latest
# Note: Relative paths do not work with docker-compose v2.x. In that case, simply use an absolute path.
PROMETHEUS_DATA="./prometheus/data"
PROMETHEUS_RETENTION_TIME=60d
#SQL_EXPORTER_VERSION=latest
# Use 0.0.0.0 to expose to LAN/Internet, use 127.0.0.1 to
# use with reverse proxy (Caddy, Traefik etc)
SQL_EXPORTER_IP=127.0.0.1
# 9399 is default from upstream project
SQL_EXPORTER_PORT=9399
# Use to customize log retention for docker containers
#LOG_MAX_SIZE=50m
#LOG_MAX_FILES=20
# For deveopment use only!!
# If you want to expose your prometheus container on your local dev host, uncomment this and set to
# public IP of your dev host
#PROMETHEUS_BIND=127.0.0.1
#PROMETHEUS_PORT=9090