11 lines
287 B
Plaintext
11 lines
287 B
Plaintext
|
#!/usr/bin/with-contenv bash
|
||
|
# shellcheck shell=bash
|
||
|
|
||
|
|
||
|
if [[ ${RUN_MODE} == "web" ]]; then
|
||
|
rm /etc/s6-overlay/s6-rc.d/user/contents.d/svc-vscode-server
|
||
|
elif [[ ${RUN_MODE} == "server" ]]; then
|
||
|
rm /etc/s6-overlay/s6-rc.d/user/contents.d/svc-vscode-server-web
|
||
|
fi
|
||
|
|
||
|
exec /docker-mods
|