Geoff Bourne

Results 719 comments of Geoff Bourne

Yes, those need to be brought into consistency of commas or newlines. Spaces might be significant so it is harder to declare that as the ubiquitous arg delimiter. There is...

...actually `SPIGET_RESOURCES` is an unusual case since that's one of the next things I want to port over to mc-image-helper. At that point, it'll get the proper comma or whitespace/newline...

That does seem strange. Your volume definition is indeed correct, so it must be a problem unrelated to docker. I'd suggest watching the `minecraft-data` directory and see at what point...

I don't see `SERVER_PORT` in your environment variables. Did you manually change the port in `server.properties` instead? In any case, there's very little reason to change the listening port since...

What you are showing seems normal before the server is ready, so please provide the full startup logs that includes the line that looks like the following: ``` [21:09:27] [Server...

Thanks for providing the logs. I see no mention of "could not connect" in those logs.

I prefer not to run additional processes inside of the container. The automation you described can be performed by a sidecar container via rcon.

You might be able to draw some inspiration from the mc-backup container since it has similar cross container rcon interactions https://github.com/itzg/docker-mc-backup/blob/master/scripts/opt/backup-loop.sh

I highly recommend you remove the `restart` policy parameter until you have your container setup initially. Otherwise, you will exceed the rate limit that CurseForge imposes.

> Pretty sure its sends it's rate limit in the http response, so maybe we can add delays so we dont run into the timeout? @Shawak How are you pretty...