Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ services:
echo 'autorestart=true' >> /etc/supervisor/conf.d/autobot.conf
echo 'priority=100' >> /etc/supervisor/conf.d/autobot.conf
echo '' >> /etc/supervisor/conf.d/autobot.conf
# x11vnc binds 0.0.0.0 inside the container — Docker network isolation
# handles security; localhost would block inter-container VNC access
echo '[program:x11vnc]' >> /etc/supervisor/conf.d/autobot.conf
echo 'command=/usr/bin/x11vnc -display :99 -rfbauth /home/autobot/.vnc/x11vnc.passwd -listen localhost -xkb -ncache 10 -forever -shared -rfbport 5901' >> /etc/supervisor/conf.d/autobot.conf
echo 'command=/usr/bin/x11vnc -display :99 -rfbauth /home/autobot/.vnc/x11vnc.passwd -listen 0.0.0.0 -xkb -ncache 10 -forever -shared -rfbport 5901' >> /etc/supervisor/conf.d/autobot.conf
echo 'autostart=true' >> /etc/supervisor/conf.d/autobot.conf
echo 'autorestart=true' >> /etc/supervisor/conf.d/autobot.conf
echo 'priority=200' >> /etc/supervisor/conf.d/autobot.conf
Expand Down
Loading