From 26f0dbb19f98651faf75478165a344f7c031f98a Mon Sep 17 00:00:00 2001 From: Skylar Sadlier Date: Tue, 24 Sep 2019 19:51:55 -0600 Subject: [PATCH] Update README.md Run command was actually incorrect and needed updating. --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e98a79c..d476cf1 100644 --- a/README.md +++ b/README.md @@ -13,16 +13,16 @@ Running the container Running the container is super easy. Just run this command: ``` -docker run --name skylord123/svencoop-server -d \ - -p 27015:27015 -p 27015:27015/udp \ - --env 'GAME_PORT=27015' \ - --env 'GAME_PARAMS=+maxplayers 12 +map osprey +log on -num_edicts 8192' \ - --env 'VALIDATE=true' - --env 'UID=99' \ - --env 'GID=100' \ - --volume /mnt/user/appdata/steamcmd:/serverdata/steamcmd \ - --volume /mnt/user/appdata/svencoop:/serverdata/serverfiles \ - skylord123/svencoop-server:latest +docker run --name svencoop-server -d \ +-p 27015:27015 -p 27015:27015/udp \ +--env 'GAME_PORT=27015' \ +--env 'GAME_PARAMS=+maxplayers 12 +map osprey +log on -num_edicts 8192' \ +--env 'VALIDATE=true' +--env 'UID=99' \ +--env 'GID=100' \ +--volume /mnt/user/appdata/steamcmd:/serverdata/steamcmd \ +--volume /mnt/user/appdata/svencoop:/serverdata/serverfiles \ +skylord123/svencoop-server:latest ``` This command will store steamcmd and serverfiles folders inside `/mnt/user/appdata` so if you want them stored elsewhere on the host make sure you change this (this was developed on Unraid which uses these paths).