vspace / entrypoint.sh
raw9
Fix: Removed all tunneling tools to satisfy abuse policy
c74ccdd
Raw
History Blame Contribute Delete
424 Bytes
#!/bin/bash
# Configuration from Secrets
USER_NAME=${USER_NAME:-"admin"}
WEB_PASSWORD=${WEB_PASSWORD:-"huggingface"}
echo "--- Advanced Developer Personal Linux VM ---"
echo "Starting VS Code (code-server) on port 7860..."
export PASSWORD=$WEB_PASSWORD
code-server \
--bind-addr 0.0.0.0:7860 \
--auth password \
--disable-telemetry \
--app-name "Linux-X-Pro" \
. &
# Keep the script running
wait -n