feat: fix compose.env

This commit is contained in:
shenjianZ 2025-07-30 14:11:44 +08:00
parent 2994a48e19
commit a681494b82
1 changed files with 2 additions and 5 deletions

View File

@ -1,12 +1,9 @@
# MySQL/MariaDB Settings
MYSQL_ROOT_PASSWORD=123456
MYSQL_DATABASE=maildb
MYSQL_USER=root
MYSQL_PASSWORD=123456
# Backend Database Settings
# These should match the MySQL/MariaDB settings above
DB_HOST=email-mysql
DB_USER=${MYSQL_USER}
DB_PASSWORD=${MYSQL_PASSWORD}
DB_USER=root
DB_PASSWORD=${MYSQL_ROOT_PASSWORD}
DB_NAME=${MYSQL_DATABASE}