From 53591311acb31d4461ae8d381d67a8164394eb79 Mon Sep 17 00:00:00 2001 From: Marc Troll <8680610+MarcTroll@users.noreply.github.com> Date: Fri, 26 Dec 2025 04:07:18 +0100 Subject: [PATCH] Fixed volume definition in docker-compose (#3830) --- docs/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 4e0fc1bc..c1ce43d1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -35,7 +35,7 @@ where, in this case, the standard server port 25565 will be exposed on your host # ... image and environment section volumes: # attach the relative directory 'data' to the container's /data path - ./data:data + - ./data:data ``` !!! note @@ -84,3 +84,4 @@ Follow the logs of the container using `docker compose logs -f`, check on the st !!! note "Deployment Examples" The [deployments page](misc/deployment/index.md) provides more examples of deployment with and beyond Docker Compose. +