From 02c6faa7ce87658602f0a3a821ba2428e908df63 Mon Sep 17 00:00:00 2001 From: mrveiss Date: Thu, 26 Mar 2026 19:05:04 +0200 Subject: [PATCH] fix(devops): restore 0.0.0.0 bind for x11vnc in Docker compose (#2409) --- .../shared/docker/compose/docker-compose.playwright-vnc.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autobot-infrastructure/shared/docker/compose/docker-compose.playwright-vnc.yml b/autobot-infrastructure/shared/docker/compose/docker-compose.playwright-vnc.yml index 89dba6b57..5cb32cb66 100644 --- a/autobot-infrastructure/shared/docker/compose/docker-compose.playwright-vnc.yml +++ b/autobot-infrastructure/shared/docker/compose/docker-compose.playwright-vnc.yml @@ -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