mbround18 / palworld-docker

🌟 Welcome to the ultimate Palworld Server Setup! 🌍 This GitHub repository is your go-to toolkit 🛠️ for launching a Palworld server in a snap using Docker! Choose from preset worlds like 'casual' 🏖️, 'normal' 🌆, or 'hard' 🌋, or dive deep into customization with flexible settings 🎛️.
https://dev.to/mbround18/dockerize-your-palworld-server-a-step-by-step-guide-1d02
BSD 3-Clause "New" or "Revised" License
24 stars 4 forks source link

Default port in compose specifies TCP port #8

Open Oscar438 opened 8 months ago

Oscar438 commented 8 months ago

I noticed in the docs, the docker-compose file has the following port mapping: 8211:8211

Since palworld uses UDP, and compose treats unspecified protocols as TCP, should the compose file be this instead?

version: "3.8"
services:
  palworld:
    ports:
      - "8211:8211/udp" # Default game port
      - "27015:27015/udp" # steam query port
mbround18 commented 8 months ago

https://github.com/mbround18/palworld-docker/pull/9