diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2022-10-22 00:21:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 00:21:16 +0200 |
commit | 77a52b8001ba6292b87138471deb7d8aa7b84e4b (patch) | |
tree | fd5415c79c93af30c978603b9c525d34a261a7fc /env | |
parent | 53219310cfbb356afacb7419ee1c1a24b12bf750 (diff) |
fix(CORE): another attempt to fix the dbimport command line warning (#13449)
Diffstat (limited to 'env')
-rw-r--r-- | env/docker/etc/authserver.conf.dockerdist | 2 | ||||
-rw-r--r-- | env/docker/etc/dbimport.conf.dockerdist | 2 | ||||
-rw-r--r-- | env/docker/etc/worldserver.conf.dockerdist | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/env/docker/etc/authserver.conf.dockerdist b/env/docker/etc/authserver.conf.dockerdist index 48a00fca22..1a470661e2 100644 --- a/env/docker/etc/authserver.conf.dockerdist +++ b/env/docker/etc/authserver.conf.dockerdist @@ -6,6 +6,8 @@ # Do not change this # Files in LogsDir will reflect on your host directory: docker/authserver/logs LogsDir = "/azerothcore/env/dist/logs" +# Files in TempDir will reflect on your host directory: docker/authserver/temp +TempDir = "/azerothcore/env/dist/temp" # Change this configuration accordingly with your docker setup # The format is "hostname;port;username;password;database": diff --git a/env/docker/etc/dbimport.conf.dockerdist b/env/docker/etc/dbimport.conf.dockerdist index 9f60b97728..2de64cedd5 100644 --- a/env/docker/etc/dbimport.conf.dockerdist +++ b/env/docker/etc/dbimport.conf.dockerdist @@ -1,6 +1,8 @@ # Do NOT change those Dir configs # Files in LogsDir will reflect on your host directory: docker/worldserver/logs LogsDir = "/azerothcore/env/dist/logs" +# Files in TempDir will reflect on your host directory: docker/authserver/temp +TempDir = "/azerothcore/env/dist/temp" DataDir = "/azerothcore/env/dist/data" # Change this configuration accordingly with your docker setup diff --git a/env/docker/etc/worldserver.conf.dockerdist b/env/docker/etc/worldserver.conf.dockerdist index d59ffa2e1b..8c391c94d1 100644 --- a/env/docker/etc/worldserver.conf.dockerdist +++ b/env/docker/etc/worldserver.conf.dockerdist @@ -6,6 +6,8 @@ # Do NOT change those Dir configs # Files in LogsDir will reflect on your host directory: docker/worldserver/logs LogsDir = "/azerothcore/env/dist/logs" +# Files in TempDir will reflect on your host directory: docker/authserver/temp +TempDir = "/azerothcore/env/dist/temp" DataDir = "/azerothcore/env/dist/data" # Change this configuration accordingly with your docker setup |