-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 9 replies
-
|
With this image, make sure proxy env vars are set on the container itself and are visible to both init tools and Java process:
Then verify from inside container: docker exec -it <container> sh -lc 'env | grep -i _proxy; wget -S -O- https://launchermeta.mojang.com >/dev/null'If Also ensure the proxy URL includes scheme and port (for example If you share your compose proxy env block (redact secrets), I can point out exactly what to adjust. If this solved it, please mark the answer so others can find it faster. |
Beta Was this translation helpful? Give feedback.
-
|
Your logs are very useful: they show one Mojang endpoint succeeds first, then a later request fails with So this is likely not a Minecraft version problem; it is a proxy path/routing inconsistency. Two concrete checks from your current config:
You can dump effective env quickly: docker exec -it ix-minecraft-server sh -lc 'env | grep -i proxy | sort'Since maintainer asked for DEBUG logs, I'd keep following that path; these two checks are the first things I'd fix/verify from the log you shared. If this solved it, please mark the most helpful answer so others can find it faster. |
Beta Was this translation helpful? Give feedback.
-
|
It's looks like it's something about the newlines ending up in the expanded |
Beta Was this translation helpful? Give feedback.
-
|
Got a PR going that will hopefully fix this |
Beta Was this translation helpful? Give feedback.
-
|
Hello again, sorry for checking back late. I tested it using the new released package The result is that it's fixed my issue! and I no longer run into any problems. Docker logs if you are curious: |
Beta Was this translation helpful? Give feedback.




Hello again, sorry for checking back late. I tested it using the new released package
ghcr.io/itzg/minecraft-server:2026.6.0-java21that has the #4081 in it, and with the same system and environment as before.The result is that it's fixed my issue! and I no longer run into any problems.
Thank you @itzg for fixing this!
Docker logs if you are curious: