Files
TravianZ/.env.example

19 lines
593 B
Bash

# MariaDB Database Configuration (preferred)
MARIADB_ROOT_PASSWORD=rootpassword
MARIADB_DATABASE=travian
MARIADB_USER=travianz
MARIADB_PASSWORD=travianzpass
# Legacy compatibility keys (optional)
# These keys inherit directly from MARIADB_* to avoid duplicate values.
MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD}
MYSQL_DATABASE=${MARIADB_DATABASE}
MYSQL_USER=${MARIADB_USER}
MYSQL_PASSWORD=${MARIADB_PASSWORD}
# Application Configuration
# These values will be used during the installation wizard.
# Hostname for database connection (use 'db' when running in Docker)
DB_HOST=db
DB_PORT=3306