mbround18 / enshrouded-docker

🌟 Welcome to the ultimate enshrouded Server Setup! 🌍 This GitHub repository is your go-to toolkit 🛠️ for launching an enshrouded server in a snap using Docker!
https://dev.to/mbround18/setting-up-an-enshrouded-dedicated-server-with-docker-2n1i
BSD 3-Clause "New" or "Revised" License
34 stars 12 forks source link

port 15637 should be udp in docker-compose #2

Closed Nightreaver closed 10 months ago

Nightreaver commented 10 months ago

as descriptions sais, port 15637 should be set to udp (- "15637:15637/udp") for the server to work

mbround18 commented 10 months ago

RCON protocol is TCP https://developer.valvesoftware.com/wiki/Source_RCON_Protocol Where as Query uses UDP.

Ideally, i can update it to reflect those configurations:

    ports:
      - "15636:15636/udp"
      - "15636:15636/tcp"
      - "15637:15637/udp"
      - "15637:15637/tcp"
Nightreaver commented 10 months ago

If I check with netstat, i dont really seen that many opened ports

bandithak commented 10 months ago

Thanks, this fixed for me on Linux. Didn't realize it needed to be so specific.