mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-06 02:30:26 -08:00
fix(docker): Solve the issue with SQL connection strings in env.ac (#9015)
* Update env.ac thank you https://github.com/pappons adds " to \conf\env.ac values that are required to properly import ac client-data. solves https://github.com/azerothcore/azerothcore-wotlk/issues/8637
This commit is contained in:
parent
e621ba184b
commit
009a52d1f1
1 changed files with 3 additions and 3 deletions
6
conf/dist/env.ac
vendored
6
conf/dist/env.ac
vendored
|
|
@ -19,11 +19,11 @@ AC_CCACHE=true
|
|||
|
||||
OUTPUT_FOLDER=/azerothcore/var/build/sql/
|
||||
|
||||
DB_AUTH_CONF=MYSQL_USER='root'; MYSQL_PASS='password'; MYSQL_HOST='ac-database'; MYSQL_PORT='3306';
|
||||
DB_AUTH_CONF="MYSQL_USER='root'; MYSQL_PASS='password'; MYSQL_HOST='ac-database'; MYSQL_PORT='3306';"
|
||||
|
||||
DB_CHARACTERS_CONF=MYSQL_USER='root'; MYSQL_PASS='password'; MYSQL_HOST='ac-database'; MYSQL_PORT='3306';
|
||||
DB_CHARACTERS_CONF="MYSQL_USER='root'; MYSQL_PASS='password'; MYSQL_HOST='ac-database'; MYSQL_PORT='3306';"
|
||||
|
||||
DB_WORLD_CONF=MYSQL_USER='root'; MYSQL_PASS='password'; MYSQL_HOST='ac-database'; MYSQL_PORT='3306';
|
||||
DB_WORLD_CONF="MYSQL_USER='root'; MYSQL_PASS='password'; MYSQL_HOST='ac-database'; MYSQL_PORT='3306';"
|
||||
|
||||
#
|
||||
# SIMPLE RESTARTER
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue