22 lines
678 B
Plaintext
22 lines
678 B
Plaintext
# Production Environment Configuration for DevOps Escape Room
|
|
# File: devops-escape-room/.env.prod
|
|
# Usage: cp .env.prod .env && docker-compose up -d
|
|
|
|
# Docker Compose Project Naming (production uses default "fellowship")
|
|
# Note: This is for the escape room stack only; the SUT stack may differ
|
|
COMPOSE_PROJECT_NAME=fellowship
|
|
|
|
# Jenkins Configuration
|
|
JENKINS_ADMIN_PASSWORD=fellowship123
|
|
JENKINS_URL=http://localhost:8080/
|
|
|
|
# Gitea Configuration
|
|
GITEA_ADMIN_USER=fellowship
|
|
GITEA_ADMIN_PASSWORD=fellowship123
|
|
GITEA_ADMIN_EMAIL=gandalf@fellowship.local
|
|
GITEA_DOMAIN=localhost
|
|
GITEA_ROOT_URL=http://localhost:3030/
|
|
|
|
# code-server IDE Configuration
|
|
CODESERVER_PASSWORD=fellowship
|