Geoff Bourne

Results 1036 comments of Geoff Bourne

Yes, you can provide UUIDs instead of username https://docker-minecraft-server.readthedocs.io/en/latest/configuration/server-properties/#whitelist-players

LAN discovery seems to be buggy with Bedrock dedicated server in general. Search the Mojang bug tracker to see if you can find any advice.

I don't think that capability should be implemented as part of the image. As you pointed out, Minecraft doesn't have a way to hook into arbitrary events externally. This image...

I already use dependabot. How does this help with versions of dependencies buried within RUN statements in Dockerfile's?

Wanted to link to this very helpful example you included in other convo https://github.com/itzg/mc-monitor/pull/90#issuecomment-2218001665

> In your ENTRYPOINT_DEMOTER project, extractVersion had to be added because you use a "v" before the version here. > > I'll look into changing that. That was a Go-ism...

It's not about how files are pulled -- the image downloads the mods listed by the modpack or not based on exclusions either by the mod metadata or by the...

With the latest image this server started up fine for me: ```yaml services: mc: image: itzg/minecraft-server tty: true stdin_open: true ports: - "25565:25565" environment: EULA: true MOD_PLATFORM: AUTO_CURSEFORGE # Allocate...

Referring to [this section](https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/mod-platforms/auto-curseforge/#exclude-client-mods) setting `CF_FORCE_SYNCHRONIZE` to "true" would have avoided needing to manually remove the mod.

Can also use the slug `smithing-template-viewer` instead of the ID Since the latest image already excludes that, probably setting CF_FORCE_SYNCHRONIZE was the original fix.