25 lines
551 B
Bash
25 lines
551 B
Bash
# =================================================================
|
|
# NEWS Stack Configuration
|
|
# =================================================================
|
|
|
|
# Stack identification
|
|
COMPOSE_PROJECT_NAME=news
|
|
|
|
# Docker image
|
|
|
|
# Database name
|
|
DB_NAME=letterspace
|
|
|
|
# Traefik configuration
|
|
TRAEFIK_ENABLED=true
|
|
TRAEFIK_HOST=${TRAEFIK_HOST_NEWS}
|
|
|
|
# Application port
|
|
APP_PORT=5000
|
|
|
|
# Additional configuration
|
|
|
|
# NOTE: Secrets are stored in root secrets.env file
|
|
# Available secrets for this stack:
|
|
# - NEWS_JWT_SECRET=CHANGE_ME_GENERATE_WITH_KOMPOSE
|