From ea08a6b49618a1e9830d0f34158574c7df75f57b Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Thu, 5 Mar 2015 15:13:17 -0600 Subject: [PATCH] Consistent description of /path/on/host --- minecraft-server/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/minecraft-server/README.md b/minecraft-server/README.md index faeda3e5..1fd42655 100644 --- a/minecraft-server/README.md +++ b/minecraft-server/README.md @@ -80,17 +80,17 @@ you can also choose to run the `LATEST` or a specific version of a [Forge server Enable Forge server mode, by adding a `-e TYPE=FORGE` to your command-line, such as $ mkdir forge-data - $ docker run -d -v $(pwd)/forge-data:/data -e TYPE=FORGE -e VERSION=1.7.10 \ + $ docker run -d -v /path/on/host:/data -e TYPE=FORGE -e VERSION=1.7.10 \ -p 25565:25565 -e EULA=TRUE itzg/minecraft In order to add mods, you will need to attach the container's `/data` directory (see "Attaching data directory to host filesystem”). Then, you can add mods to the `/path/on/host/mods` folder you chose. From the example above, -the `forge-data` folder contents look like: +the `/path/on/host` folder contents look like: ``` -forge-data +/path/on/host ├── mods │   └── ... INSTALL MODS HERE ... ├── config