Browse Source

chore: linting

pull/9/head
Daniel Gibbs 2 years ago
parent
commit
eb131128f6
  1. 1
      .gitignore
  2. 3
      .prettierrc.json
  3. 2
      README.md
  4. 2
      entrypoint.sh

1
.gitignore

@ -21,3 +21,4 @@ bundles/
vendor/pkg/
pyenv
Vagrantfile
/node_modules

3
.prettierrc.json

@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-sh"]
}

2
README.md

@ -1,5 +1,7 @@
# LinuxGSM Docker Image
> Note this is the base LinuxGSM image. For full game servers use <a href="https://github.com/GameServerManagers/docker-gameserver">docker-gameserver</a>
<p align="center">
<a href="https://linuxgsm.com"><img src="https://user-images.githubusercontent.com/4478206/197897104-bb718d2e-09a0-4f83-8e86-c829044750a9.jpg" alt="LinuxGSM"></a>
<br>

2
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"

Loading…
Cancel
Save