chrodev/start.sh

14 lines
216 B
Bash
Raw Normal View History

2024-07-23 16:40:12 -04:00
#!/bin/bash
# Start SSH
/usr/sbin/sshd
# Start Xvfb
Xvfb :1 -screen 0 1024x768x16 &
# Start VNC server
vncserver :1 -geometry 1024x768 -depth 16 -SecurityTypes None
# Keep the container running
tail -f /dev/null