From 1916f38436f931f3f33d4b96a385e85c83d88b01 Mon Sep 17 00:00:00 2001 From: Myve Date: Tue, 23 Jul 2024 01:33:21 +0000 Subject: [PATCH] Fix novnc Dockerfile (MYVNC_VNCLISTEN_HOST should be MYVNC_VNCLISTEN_PORT) --- novnc/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novnc/Dockerfile b/novnc/Dockerfile index ad53207..0d26717 100644 --- a/novnc/Dockerfile +++ b/novnc/Dockerfile @@ -33,7 +33,7 @@ then fi # Read ssh client variables hostname and port (5900, 5901, 5902, etc) -ssh ${MYVNC_VNCSSH_HOST} -L ${MYVNC_VNCLISTEN_HOST:-5900}:localhost:${MYVNC_VNCSSH_PORT} & +ssh ${MYVNC_VNCSSH_HOST} -L ${MYVNC_VNCLISTEN_PORT:-5900}:localhost:${MYVNC_VNCSSH_PORT} & 01-init # Default environment