File size: 309 Bytes
b4f3c4e |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
echo "Starting VSCode Server..."
/app/openvscode-server/bin/openvscode-server --host 0.0.0.0 --port 7860 --without-connection-token "${@}" &
echo "Starting Code Tunnel..."
/usr/bin/code tunnel --accept-server-license-terms &
# Sleep for a long time to keep the container running
sleep infinity
|