-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
33 lines (27 loc) · 1.19 KB
/
.env
File metadata and controls
33 lines (27 loc) · 1.19 KB
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
# Image Versions
TRAEFIK_VER="v3.6.15"
STEPCA_VER="0.30.2"
DOZZLE_VER="latest"
# This will be the Certificate Authority (CA) for the local development environment.
# Certificates will be issued by this CA.
DOCKER_STEPCA_INIT_NAME="Local Dev CA"
# This is where the step-ca server accept connections.
# Traefik will requests certificates through `host.docker.internal:9000`
DOCKER_STEPCA_INIT_DNS_NAMES="localhost,127.0.0.1,host.docker.internal"
# From docs: (recommended) DOCKER_STEPCA_INIT_REMOTE_MANAGEMENT enable remote provisioner management
DOCKER_STEPCA_INIT_REMOTE_MANAGEMENT="true"
# From docs: DOCKER_STEPCA_INIT_ACME also create an initial ACME provisioner for the CA
DOCKER_STEPCA_INIT_ACME="true"
# Prefix used in Traefik labels
TRAEFIK_PREFIX="traefik"
# Base domain used to expose containers over
TRAEFIK_DOMAIN="traefik.127-0-0-1.sslip.io"
# Certificate resolver to use for TLS termination
TRAEFIK_CERT_RESOLVER="stepca"
# Traefik entrypoint for HTTPS traffic
TRAEFIK_HTTPS_ENTRYPOINT="websecure"
# Traefik entrypoint for TCP traffic
# This environment is not in use at the moment
# due to lack of a container that needs it,
# but the usage is the same as HTTPS
TRAEFIK_TCP_ENTRYPOINT="shared"