我们的葡萄酒码头游戏服务器有一个长期问题。游戏运行良好,但它在http端口(8080)上提供了一个远程客户端,没有响应。我想,也许这里的人,谁不喜欢游戏,但对葡萄酒,可以帮助我们解决问题。
我说的游戏是空间工程师,可悲的是只有windows服务器和windows客户端,所以我们创建了一个带有葡萄酒的对接器,在linux服务器上运行它。到目前为止,游戏本身运行良好(在我的vps上),但是没有人让远程客户端连接到服务器上,上面写着http端口。
链接到git:https://github.com/Devidian/docker-spaceengineers
游戏日志指示远程服务器侦听器已启动并在端口8080上侦听。
知道如何解决或进一步检查这一问题吗?
-更新-根据要求,我使用的作曲家文件:
version: '3.8'
services:
se-server:
#build: .
image: devidian/spaceengineers:winestaging
container_name: se-ds-docker
restart: unless-stopped
volumes:
# left side: your docker-host machine
# right side: the paths in the image (!!do not change!!)
- /appdata/space-engineers/instances:/appdata/space-engineers/instances
- /appdata/space-engineers/SpaceEngineersDedicated:/appdata/space-engineers/SpaceEngineersDedicated
- /appdata/space-engineers/steamcmd:/root/.steam
ports:
- target: 8080
published: 18080
protocol: tcp
mode: host
- target: 27016
published: 27016
protocol: udp
mode: host
environment:
- WINEDEBUG=-all
- INSTANCE_NAME=Debian
- PUBLIC_IP=--REDACTED--诚挚的问候
发布于 2023-05-17 14:26:40
您的停靠-撰写不发布端口8080,所以没有外部程序可以连接到它.
https://unix.stackexchange.com/questions/746166
复制相似问题