Added more docker servers as reference

This commit is contained in:
2025-11-24 19:12:16 -06:00
parent 7f851f5bca
commit aa9fbe9082
28 changed files with 486 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
set -eu pipefail
LSPCONTAINERS_GROUP=$(id -g)
LSPCONTAINERS_USER=$(id -u)
sudo usermod -u $LSPCONTAINERS_USER lspcontainers \
&& sudo groupmod -g $LSPCONTAINERS_GROUP lspcontainers || true \
&& exec "gopls"