We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a6e0f commit c1d35b1Copy full SHA for c1d35b1
1 file changed
root/etc/services.d/code-server/run
@@ -1,8 +1,9 @@
1
#!/usr/bin/with-contenv bash
2
3
if [ -n "${PASSWORD}" ]; then
4
- AUTH="--auth password"
+ AUTH="password"
5
else
6
+ AUTH="none"
7
echo "starting with no password"
8
fi
9
@@ -14,5 +15,5 @@ exec \
14
15
--extensions-dir /config/extensions \
16
--disable-telemetry \
17
--disable-updates \
- ${AUTH} \
18
+ --auth "${AUTH}" \
19
/config/workspace
0 commit comments