# ====================================== # Roundcube Configuration Template # Copy to '.env' and replace values # ====================================== # ------------------------------ # Database Configuration # ------------------------------ MYSQL_ROOT_PASSWORD=your_strong_db_root_password MYSQL_DATABASE=roundcubemail # ------------------------------ # Roundcube Settings # ------------------------------ ROUNDCUBEMAIL_DB_TYPE=mysql ROUNDCUBEMAIL_DB_HOST=roundcubedb ROUNDCUBEMAIL_DB_PASSWORD=${MYSQL_ROOT_PASSWORD} ROUNDCUBEMAIL_SKIN=elastic ROUNDCUBEMAIL_DEFAULT_HOST=tls://your.mail.server ROUNDCUBEMAIL_SMTP_SERVER=tls://your.mail.server # ------------------------------ # Paths (Relative to compose file) # ------------------------------ DB_DATA_PATH=./db/mysql WWW_DATA_PATH=./www # ------------------------------ # Port Mapping # ------------------------------ MYSQL_PORT=33006 ROUNDCUBE_PORT=9001 # ============================================= # Security Notice: # 1. Never commit real .env to version control # 2. Change all credentials in production # =============================================