docker 布署测试通过

main
bug 2020-11-23 00:44:39 +08:00
parent a73f0ae191
commit cea5d7273d
3 changed files with 18 additions and 4 deletions

View File

@ -23,8 +23,8 @@
- 进入 config 目录 - 进入 config 目录
- 双击 生成lua数据.bat - 双击 生成lua数据.bat
- 生成的 OutputLua 目录即对像数据 - 生成的 output_lua 目录即对像数据
- 修改 bat 路径,即可使用至项目中 - 修改 bat 脚本路径,即可使用至项目中
## 使用示例 ## 使用示例

View File

@ -0,0 +1,12 @@
..\src\Luban.Client\bin\Debug\netcoreapp3.1\Luban.Client.exe ^
-h 81.69.4.240 ^
-j cfg ^
-- ^
-d Defines/root.xml ^
--input_data_dir Datas ^
--output_data_dir output_lua ^
-s server ^
--gen_types data_lua ^
--export_test_data
pause

View File

@ -4,5 +4,7 @@
# 服务端布署 # 服务端布署
## Docker 镜像布署 ## Docker 镜像布署
- docker pull hugebug4ever/luban:latest ``` bash
- docker run -d -p 8899:8899 hugebug4ever/luban:latest docker pull hugebug4ever/luban:latest
docker run --name luban-server -d -p 8899:8899 hugebug4ever/luban:latest
```