vnc / app.sh
crystal99's picture
Update app.sh
d600739 verified
raw
history blame contribute delete
241 Bytes
#!/bin/bash
echo "▶️ Starting VNC server..."
vncserver :1 -geometry 1280x800 -depth 24
echo "▶️ Launching noVNC proxy on :7860"
websockify --web=/usr/share/novnc/ 7860 localhost:5901 &
# Keep the container alive
tail -f /dev/null