#!/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