Environment Variables
Most of our containers are configured primarily via environment variables. They follow upstream conventions — refer to each application’s per-container page for the supported keys.
Setting Variables
Section titled “Setting Variables”Docker Compose
Section titled “Docker Compose”services: my-app: image: ghcr.io/trueforge-org/my-app:latest environment: TZ: Europe/Amsterdam LOG_LEVEL: infoPodman / Docker CLI
Section titled “Podman / Docker CLI”docker run -e TZ=Europe/Amsterdam -e LOG_LEVEL=info ghcr.io/trueforge-org/my-app:latestKubernetes
Section titled “Kubernetes”env: - name: TZ value: Europe/Amsterdam - name: LOG_LEVEL value: infoLoading From a File
Section titled “Loading From a File”For long lists of variables, use an env file:
services: my-app: image: ghcr.io/trueforge-org/my-app:latest env_file: - ./my-app.envTime Zone
Section titled “Time Zone”All our images respect the standard TZ variable, e.g. TZ=Europe/Amsterdam. If unset, the container defaults to UTC.