build: 添加服务器构建配置文件映射

- 在 Docker Compose 文件中添加了多个服务器构建配置文件的卷映射
- 包括 AMServer、BackStageServer、LoggerServer、NameServer 和 SessionServer 的 Linux 构建配置文件
- 这些配置文件映射将允许在容器中进行服务器构建和配置
This commit is contained in:
2025-05-17 09:39:56 +08:00
parent 45a66fe5bc
commit 971de6ec9f
6 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
NameServer =
{
--服务器名称
ServerName = "zgame-nameserver",
spguid=1,
--监听:名称服务绑定地址和端口
NameService =
{
Address = "0.0.0.0",
Port = 35000
},
--数据库连接配置
SQL =
{
--Host = "192.168.0.173",
Host = "127.0.0.1",
Port = 3306,
DBName = "mir_name",
DBUser = "root",
DBPass = "85b5c930502992d4"
}
}