|
## 传奇服务端部署指南
**试玩地址:** http://mir.jutx.cn:3080
**GM工具:** http://mir.jutx.cn:3080/gm/ (密码: 123456)
**Docker Compose配置:**
```yaml
version: '3.8'
services:
chuanqi:
image: registry.cn-hangzhou.aliyuncs.com/guoshiyin/game:chuanqi
container_name: chuanqi
network_mode: host
stdin_open: true
tty: true
restart: always
```
**启动服务:**
1. `docker compose up -d`
2. 进入容器: `docker exec -it chuanqi /bin/bash`
3. 进入根目录: `cd /root`
**解决乱码问题:**
1. 编辑配置文件: `vi /root/.vimrc`
2. 添加以下内容:
```
set encoding=utf-8
set fileencodings=utf-8,gbk,latin1
```
**替换IP地址:**
1. 修改 `ip.sh` 脚本,将 `82.156.214.188` 替换为 `172.16.90.180`
2. 运行脚本: `bash ip.sh 你的服务器ip地址` (例如: `bash ip.sh 127.0.0.1`)
**更多信息:** 请参考相关帖子。 |
|