-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Matthew X. Economou edited this page Sep 21, 2020
·
11 revisions
Welcome to the docker-rlcraft wiki!
To build the image:
docker build -t irtnog/docker-rlcraft:2.8.2 \
https://github.com/irtnog/docker-rlcraft.git
To start the server for the first time in the background:
docker volume create rlcraft-data-vol
docker run -d -p 25565:25565 -e EULA=TRUE --name rlcraft \
--mount source=rlcraft-data-vol,target=/server/world \
irtnog/docker-rlcraft:2.8.2
To stop the server:
docker stop rlcraft
To start the server:
docker start rlcraft
Change the restart policy if needed:
docker update --restart=always rlcraft