DockerMod to allow installation of code-server extensions by providing a list of extensions to install through environment variable

This commit is contained in:
RoboMagus
2021-11-08 13:58:37 +01:00
committed by dijkr
parent d1dc6e5858
commit a345eb8a9f
7 changed files with 25 additions and 71 deletions
@@ -0,0 +1,15 @@
#!/usr/bin/with-contenv bash
# Exit if no VsCode extensions are given
if [ -z ${VSCODE_EXTENSION_IDS+x} ]; then
echo "**** No VSCODE EXTENSIONS GIVEN****"
exit 0
fi
IFS='|'
VSCODE_EXTENSION_IDS=(${VSCODE_EXTENSION_IDS})
for ID in "${VSCODE_EXTENSION_IDS[@]}"; do
echo "**** installing extension: ${ID} ****"
code-server --user-data-dir /config/data --extensions-dir /config/extensions --install-extension ${ID}
done