mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2024-11-23 12:35:40 +01:00
21 lines
394 B
Plaintext
21 lines
394 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [ -n "${PASSWORD}" ]; then
|
|
AUTH="password"
|
|
else
|
|
AUTH="none"
|
|
echo "starting with no password"
|
|
fi
|
|
|
|
exec \
|
|
s6-setuidgid abc \
|
|
/app/code-server/code-server \
|
|
--host 0.0.0.0 \
|
|
--port 8443 \
|
|
--user-data-dir /config/data \
|
|
--extensions-dir /config/extensions \
|
|
--disable-telemetry \
|
|
--disable-updates \
|
|
--auth ${AUTH} \
|
|
/config/workspace
|