diff --git a/Dockerfile b/Dockerfile index d314905..f22931c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -95,6 +95,7 @@ RUN \ VERSION=$(ls -1 /usr/lib/ | \ awk -F '-' '/pulse-/ {print $2; exit}') && \ ldconfig -n /usr/lib/pulse-${VERSION}/modules && \ + sed -i 's/ListenAddress/;ListenAddress/' /etc/xrdp/sesman.ini && \ echo "**** cleanup and user perms ****" && \ echo "abc:abc" | chpasswd && \ usermod -s /bin/bash abc && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 290808f..cc7a5f7 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -94,6 +94,7 @@ RUN \ VERSION=$(ls -1 /usr/lib/ | \ awk -F '-' '/pulse-/ {print $2; exit}') && \ ldconfig -n /usr/lib/pulse-${VERSION}/modules && \ + sed -i 's/ListenAddress/;ListenAddress/' /etc/xrdp/sesman.ini && \ echo "**** cleanup and user perms ****" && \ echo "abc:abc" | chpasswd && \ usermod -s /bin/bash abc && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4d1eb27..f873312 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -94,6 +94,7 @@ RUN \ VERSION=$(ls -1 /usr/lib/ | \ awk -F '-' '/pulse-/ {print $2; exit}') && \ ldconfig -n /usr/lib/pulse-${VERSION}/modules && \ + sed -i 's/ListenAddress/;ListenAddress/' /etc/xrdp/sesman.ini && \ echo "**** cleanup and user perms ****" && \ echo "abc:abc" | chpasswd && \ usermod -s /bin/bash abc && \