From 55fb21cdd74236295f9c13d647858a62048baf38 Mon Sep 17 00:00:00 2001 From: rela <136220062+rela-v@users.noreply.github.com> Date: Sat, 17 Jun 2023 00:32:30 -0400 Subject: [PATCH] docs: add full working example tutorial in misc/deployment/ with link in intro (#2225) --- docs/index.md | 3 +++ docs/misc/deployment/index.md | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 docs/misc/deployment/index.md diff --git a/docs/index.md b/docs/index.md index 791fd2b6..254e4b37 100644 --- a/docs/index.md +++ b/docs/index.md @@ -59,5 +59,8 @@ To apply changes made to the compose file, just run `docker compose up -d` again Follow the logs of the container using `docker compose logs -f`, check on the status with `docker compose ps`, and stop the container using `docker compose stop`. +!!! note "Full Setup Example" + Here is a [reference guide to setting up a server from scratch using docker compose](misc/deployment/docker-compose-full-example/). + !!! note "More Examples" There are more [examples located in the Github repo](https://github.com/itzg/docker-minecraft-server/tree/master/examples). \ No newline at end of file diff --git a/docs/misc/deployment/index.md b/docs/misc/deployment/index.md new file mode 100644 index 00000000..21e7c36e --- /dev/null +++ b/docs/misc/deployment/index.md @@ -0,0 +1,10 @@ +## Supporting Articles + +Below are supporting articles for server deployment. + + +- "Zero to Minecraft Server with Docker Desktop and Compose" + + https://dev.to/rela-v/zero-to-minecraft-server-with-docker-desktop-and-compose-500a + + - This is a reference guide/tutorial on how to set up a vanilla Minecraft server using this project, including step-by-step instructions, and information on topics such as port-forwarding.