From bccfd8374c85ab8346b5e3bbe96e870bf3fa6f78 Mon Sep 17 00:00:00 2001 From: Yannik <80621863+vaporvee@users.noreply.github.com> Date: Sat, 28 Sep 2024 23:43:35 +0200 Subject: [PATCH] Updated How to host Multiplayer (markdown) --- How-to-host-Multiplayer.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/How-to-host-Multiplayer.md b/How-to-host-Multiplayer.md index aea1db6..3d16827 100644 --- a/How-to-host-Multiplayer.md +++ b/How-to-host-Multiplayer.md @@ -61,8 +61,9 @@ World Host
# Linux root server (Docker) ## Requirement: - [Docker with Docker Compose Plugin](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository) - -Create a new directory with a `docker-compose.yml` with the following contents: +## Installation +1. Create a new directory +2. Create a file called `docker-compose.yml` with the following contents: ```yml services: mc: @@ -96,5 +97,18 @@ services: volumes: - ./data:/data ``` +3. Run docker compose up -d in that directory +4. Server should now be installing and then starting -more info coming soon... \ No newline at end of file +Follow the logs of the container using +```sh +docker compose logs -f +``` +check on the status with +```sh +docker compose ps +``` +and stop the container using +```sh +docker compose stop +``` \ No newline at end of file