diff --git a/.gitignore b/.gitignore index a2dd3b2..7e9b385 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,5 @@ bundles/ .git/ vendor/pkg/ pyenv -Vagrantfile \ No newline at end of file +Vagrantfile +/node_modules diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..02d542d --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-sh"] +} diff --git a/README.md b/README.md index 967a083..8c2fb50 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # LinuxGSM Docker Image + > Note this is the base LinuxGSM image. For full game servers use docker-gameserver +

LinuxGSM
diff --git a/entrypoint.sh b/entrypoint.sh index e7cbe64..97653b2 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -42,7 +42,7 @@ echo -e "" echo -e "Check Permissions" echo -e "=================================" echo -e "setting UID to ${UID}" -usermod -u ${UID} linuxgsm >/dev/null 2>&1 +usermod -u ${UID} linuxgsm > /dev/null 2>&1 echo -e "setting GID to ${GID}" groupmod -g ${GID} linuxgsm echo -e "updating permissions"