9 lines
369 B
Bash
9 lines
369 B
Bash
# Compose-level variables, interpolated into docker-compose.yml's Traefik
|
|||
|
|
# labels - separate from config/.env, which is for the app's own config.yml.
|
||
|
|
TRAEFIK_HOST=pulsenode.example.com
|
||
|
|
NETWORK_NAME=falcon_network
|
||
|
|
|
||
|
|
# Host's docker group GID, so the non-root container user can read
|
||
|
|
# /var/run/docker.sock. Find it with: getent group docker | cut -d: -f3
|
||
|
|
DOCKER_GID=999
|