-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env-example
30 lines (25 loc) · 1.12 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
# environment variables - read by docker compose.
# copy this to .env in the setup folder and update values.
# ---------------------------------------------------------
# postgres/timescaledb
# ---------------------------------------------------------
PGHOST=postgres
PGPORT=5432
PGDATABASE=postgres
PGUSER=postgres
PGPASSWORD=postgres # IMPORTANT - set this before running postgres
# ---------------------------------------------------------
# postgrest
# ---------------------------------------------------------
# used to edit setup values via grafana and postgrest
PGAUTHPASSWORD=postgres # UPDATE THIS!
# ---------------------------------------------------------
# grafana
# ---------------------------------------------------------
# note: default login is admin, pw admin - will need to change on first login
GRAFANA_PORT=3000 # this is the default, but need to specify here
# GRAFANA_PORT=80 # 80 is used by traefik
# GRAFANA_PORT=3009 # use this when running locally
# these will get used the first time grafana is run
GF_SECURITY_ADMIN_USER=admin
GF_SECURITY_ADMIN_PASSWORD=grafana # IMPORTANT - set this BEFORE running grafana