Skip to content

Commit c90f609

Browse files
authored
Merge pull request #3 from trjohnson19/fix-env
Use consistent env vars; use more env vars
2 parents 8890825 + a140753 commit c90f609

File tree

2 files changed

+96
-85
lines changed

2 files changed

+96
-85
lines changed

.env.example

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ RENDER_GROUP=
66
VIDEO_GROUP=
77
TZ=
88
USERDIR= # Full path (i.e. `/home/<user>`, not `~`)
9-
DOCKERDIR= # e.g. $USERDIR/docker
10-
APPDIR= # e.g. $DOCKERDIR/appdata
11-
SECRETSDIR= # e.g. $DOCKERDIR/secrets
12-
DATADIR= # e.g. $DOCKERDIR/data or /mnt/nas/dockerdata
9+
DOCKERDIR= # e.g. "${USERDIR}/docker"
10+
APPDIR= # e.g. "${DOCKERDIR}/appdata"
11+
SECRETSDIR= # e.g. "${DOCKERDIR}/secrets"
12+
DATADIR= # e.g. "${DOCKERDIR}/data" or /mnt/nas/dockerdata
1313
COMPOSE_HTTP_TIMEOUT= # Necessary for slow DNS lookups that are possible with Pi-Hole
1414
IP= # Internal LAN server IP
15-
SERVER_IP=$IP
15+
SERVER_IP="${IP}"
1616
LAN_NETWORK= # CIDR notation e.g. 192.168.1.0/24
1717

1818

@@ -55,11 +55,14 @@ BLUEBUBBLES_VNC_PORT=5999
5555
BLUEBUBBLES_SERVER_PORT=1234
5656
GLUETUN_HTTP_CONTROL_SERVER_PORT=9001
5757
GLUETUN_PRIVATE_HTTP_CONTROL_SERVER_PORT=9002
58+
TDARR_SERVER_PORT=8266
59+
TDARR_WEBUI_PORT=8265
60+
TDARR_NODE_PORT=9267
5861

5962

6063
##### T2_PROXY NETWORK IPS
6164

62-
## Example values given, can be whatever ports are desired
65+
## Example values given, can be whatever IPs are desired
6366
T2_PROXY_SUBNET=10.123.101.0/24
6467
T2_PROXY_GATEWAY=10.123.101.1
6568
TRAEFIK_IPV4=10.123.101.254
@@ -79,15 +82,15 @@ TAUTULLI_IPV4=10.123.101.111
7982

8083
##### SOCKET_PROXY NETWORK IPS
8184

82-
## Example values given, can be whatever ports are desired
85+
## Example values given, can be whatever IPs are desired
8386
SOCKET_PROXY_SUBNET=10.123.102.0/24
8487
SOCKET_PROXY_GATEWAY=10.123.102.1
8588
SOCKET_PROXY_IPV4=10.123.102.254
8689

8790

8891
##### GLUETUN_NET NETWORK IPS
8992

90-
## Example values given, can be whatever ports are desired
93+
## Example values given, can be whatever IPs are desired
9194
GLUETUN_SUBNET=10.123.103.0/24
9295
GLUETUN_GATEWAY=10.123.103.1
9396
GLUETUN_IPV4=10.123.103.254
@@ -116,7 +119,7 @@ EMAIL_ADDRESS=
116119
EMAIL_SERVER=
117120
EMAIL_SERVER_PORT=
118121
EMAIL_SERVER_USER=
119-
EMAIL_SERVER_PASSWORD=
122+
# EMAIL_SERVER_PASSWORD= # Use docker secrets instead
120123
EMAIL_SERVER_SECURITY=
121124

122125

@@ -184,3 +187,15 @@ BLUEBUBBLES_VNC_PASSWORD=
184187
GLUETUN_SERVER_COUNTRIES=
185188
GLUETUN_SERVER_CITIES=
186189
GLUETUN_SERVER_HOSTNAMES=
190+
191+
192+
##### NEW RELIC
193+
194+
NRIA_LICENSE_KEY=
195+
196+
197+
##### MISCELLANEOUS
198+
199+
NTP_SERVERS="pool.ntp.org,time.nist.gov,time.cloudflare.com"
200+
WIREGUARD_PEERS="misc1,misc2,misc3"
201+

0 commit comments

Comments
 (0)