43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
# Copy this file to `.env` and adjust values as needed.
|
|||
|
|
# cp .env.example .env
|
||
|
|
#
|
||
|
|
# Compose reads `.env` automatically to fill the ${VAR} placeholders in
|
||
|
|
# docker-compose.yml. The Website app ALSO reads a `.env` file at runtime via
|
||
|
|
# swift-configuration (allowMissing: true), so any extra app config keys placed
|
||
|
|
# here are picked up by the running service too.
|
||
|
|
|
||
|
|
# --- Image / deployment -------------------------------------------------------
|
||
|
|
|
||
|
|
# Host name of the container running the Website service.
|
||
|
|
HOST_CONTAINER=containers.rock-n-code.com
|
||
|
|
|
||
|
|
# Owner of the container running the Website service.
|
||
|
|
HOST_OWNER=loud
|
||
|
|
|
||
|
|
# Password for authenticating to the container registry.
|
||
|
|
HOST_PASSWORD=
|
||
|
|
|
||
|
|
# Host port mapped to the container's port 8080.
|
||
|
|
HOST_PORT=8080
|
||
|
|
|
||
|
|
# User name for authenticating to the container registry.
|
||
|
|
HOST_USER=
|
||
|
|
|
||
|
|
# Name of the Docker image to pull/run.
|
||
|
|
IMAGE_NAME=website
|
||
|
|
|
||
|
|
# Platform of the Docker image to pull/run.
|
||
|
|
IMAGE_PLATFORM=linux/arm64
|
||
|
|
|
||
|
|
# Tag of the image to pull/run.
|
||
|
|
# Use a semver in production; avoid `latest` so rollbacks are unambiguous.
|
||
|
|
IMAGE_TAG=latest
|
||
|
|
|
||
|
|
# --- Application config -------------------------------------------------------
|
||
|
|
|
||
|
|
# Server name reported by the HTTP service.
|
||
|
|
HTTP_SERVER_NAME=LoudWebsite
|
||
|
|
|
||
|
|
# Log verbosity: trace | debug | info | notice | warning | error | critical
|
||
|
|
LOG_LEVEL=info
|