From 36251c3caa60bade07c0a949d9253b4dc648acfa Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Sat, 14 Mar 2026 05:58:13 -0400 Subject: [PATCH] fix(rdp): correct guacd debug entrypoint override MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ENTRYPOINT not CMD — guacamole/guacd image sets its own entrypoint, so command override was being appended as args to guacd binary. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index f622293..b6e51bd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,7 @@ services: guacd: image: guacamole/guacd network_mode: host - command: ["/usr/local/sbin/guacd", "-b", "0.0.0.0", "-L", "debug", "-f"] + entrypoint: ["/opt/guacamole/sbin/guacd", "-b", "0.0.0.0", "-L", "debug", "-f"] restart: always postgres: