2019-06-24 18:03:06 +00:00
|
|
|
#!/usr/bin/with-contenv bash
|
|
|
|
|
2019-06-24 19:27:16 +00:00
|
|
|
if [ -n "${PASSWORD}" ]; then
|
2019-10-24 20:28:48 +00:00
|
|
|
AUTH="password"
|
2019-06-24 19:27:16 +00:00
|
|
|
else
|
2019-10-24 20:28:48 +00:00
|
|
|
AUTH="none"
|
2019-06-24 19:27:16 +00:00
|
|
|
echo "starting with no password"
|
|
|
|
fi
|
|
|
|
|
2019-06-24 18:03:06 +00:00
|
|
|
exec \
|
2019-06-24 19:27:16 +00:00
|
|
|
s6-setuidgid abc \
|
2019-06-26 00:19:14 +00:00
|
|
|
/usr/bin/code-server \
|
2019-10-24 19:51:46 +00:00
|
|
|
--port 8443 \
|
|
|
|
--user-data-dir /config/data \
|
|
|
|
--extensions-dir /config/extensions \
|
2019-06-24 19:27:16 +00:00
|
|
|
--disable-telemetry \
|
2019-10-24 19:51:46 +00:00
|
|
|
--disable-updates \
|
2019-10-24 20:28:48 +00:00
|
|
|
--auth "${AUTH}" \
|
2019-06-24 19:27:16 +00:00
|
|
|
/config/workspace
|