Create a Container instance request for the Docker image
minecraft
, myminecraft
, creeper
)Wait for the request to be accepted/denied
Request an upgrade to your specs via the Upgrade button ask for an adaquete amount of RAM:
root
username and password received in the emailWe plan on binding Minecraft to port 25565
on our instance
But we need it to be publicly available so we can join, therefore we need to do a port forward
Hit + Port and add a port map, which will map a free external port to your internal 25565
You will need to remember the external port listed here later
docker run -d -p 25565:25565 -e ENABLE_AUTOPAUSE=TRUE -e EULA=TRUE --restart always --name mc itzg/minecraft-server:java17-openj9
docker exec -i mc rcon-cli
and then type help
to see commandsdocker logs mc --follow
You can connect to the server by using your instance hostname and externally mapped port
For the screenshot above, the server and port to join would be minecraft.ocanty.container.netsoc.cloud:17226
If your server appears down, you may need to connect to it once for it to appear online
latest
with java16-openj9
in commands given here, java16-openj9
will be more efficient than the default
openj9
images.docker run
with these images, you MUST have -e ENABLE_AUTOPAUSE=TRUE