This is a process wrapper used by
the itzg/minecraft-server Docker image
to ensure the Minecraft server is stopped gracefully when the container is sent the TERM signal.
Available at any time using
-h
-bootstrap string
Specifies a file with commands to initially send to the server
-debug
Enable debug logging
-detach-stdin
Don't forward stdin and allow process to be put in background
-named-pipe string
Optional path to create and read a named pipe for console input
-remote-console
Allow remote shell connections over SSH to server console
-shell string
When set, pass the arguments to this shell
-stop-command string
Which command to send to the server to stop it (default "stop")
-stop-duration duration
Amount of time in Golang duration to wait after sending the 'stop' command.
-stop-server-announce-delay duration
Amount of time in Golang duration to wait after announcing server shutdown
-websocket-address string
Bind address for websocket server (env WEBSOCKET_ADDRESS) (default "0.0.0.0:80")
-websocket-allowed-origins value
Comma-separated list of trusted origins (env WEBSOCKET_ALLOWED_ORIGINS)
-websocket-console
Allow remote shell over websocket
-websocket-disable-authentication
Disable websocket authentication (env WEBSOCKET_DISABLE_AUTHENTICATION)
-websocket-disable-origin-check
Disable checking if origin is trusted (env WEBSOCKET_DISABLE_ORIGIN_CHECK)
-websocket-log-buffer-size int
Number of log lines to save and send to connecting clients (env WEBSOCKET_LOG_BUFFER_SIZE) (default 50)
-websocket-password string
Password will be the same as RCON_PASSWORD if unset (env WEBSOCKET_PASSWORD)
The -stop-server-announce-delay can by bypassed by sending a SIGUSR1 signal to the mc-server-runner process.
This works in cases where a prior SIGTERM has already been sent and in cases where no prior signal has been sent.
Start a golang container for building and execution:
Port 2222 is used for remote ssh console
Port 80 is used for remote websocket console
docker run -it --rm \
-v ${PWD}:/build \
-w /build \
-p 2222:2222 \
-p 80:80 \
golang:1.19Within that container, build/test by running:
go run . test/dump.sh
go run . test/bash-only.sh
# Used to test remote console functionality
# Connect to this using an ssh client from outside the container to ensure two-way communication works
go run . -remote-console /usr/bin/sh
# The following should fail
go run . --shell sh test/bash-only.shCreate a "Go Build" run configuration
with a Dockerfile target

