Expose and document IPv6 port 19133 by default#626
Conversation
itzg
left a comment
There was a problem hiding this comment.
Thanks for addressing this. Just a couple spots to dial it back.
On my Java edition image I am trying to move away from full command-line snippets. They're distracting and harder to maintain. These really need to change to my dual example style like
https://docker-minecraft-server.readthedocs.io/en/latest/configuration/jvm-options/#memory-limit
| docker run -d -it --name bds-flat-creative \ | ||
| -e EULA=TRUE -e LEVEL_TYPE=flat -e GAMEMODE=creative \ | ||
| -p 19132:19132/udp itzg/minecraft-bedrock-server | ||
| -p 19132:19132/udp -p 19133:19133/udp itzg/minecraft-bedrock-server |
There was a problem hiding this comment.
Don't change this. I shouldn't have even included the full command line including any mention of ports.
There was a problem hiding this comment.
Reverted. Please let me know if instead I should remove the -p flag altogether (which I understand would leave us with an unreachable server) -> so a -p in the example makes sense, to not create confusion maybe?
| ```shell | ||
| docker volume create mc-volume | ||
| docker run -d -it --name mc-server -e EULA=TRUE -p 19132:19132/udp -v mc-volume:/data itzg/minecraft-bedrock-server | ||
| docker run -d -it --name mc-server -e EULA=TRUE -p 19132:19132/udp -p 19133:19133/udp -v mc-volume:/data itzg/minecraft-bedrock-server |
There was a problem hiding this comment.
Reverted, same question as above.
|
Hope to have addressed the issues the way you feel appropriate. That said, allow me the comment, I feel in general dual-stack actually is the more common setup in networks these days, not IPv4 only. But I understand you want to keep the examples streamlined. |
|
Good point that most people actually would be dual stack (without knowing it). |
No description provided.