diff --git a/README.md b/README.md index 53a8ebd..38ebec9 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,14 @@ A Docker image for the [ReactOS](https://www.reactos.org) operating system. docker run --detach \ --name qemu-reactos \ --device /dev/kvm \ + --publish 127.0.0.1:5900:5900/tcp \ --publish 127.0.0.1:6080:6080/tcp \ docker.io/hectormolinero/qemu-reactos:latest ``` > The instance can be accessed from: -> * 6080/TCP (noVNC): http://127.0.0.1:6080/vnc.html +> * VNC (5900/TCP): any VNC client, without credentials. +> * noVNC (6080/TCP): http://127.0.0.1:6080/vnc.html ## Environment variables #### `VM_CPU` diff --git a/scripts/service/novnc/run b/scripts/service/novnc/run index 377ee85..2c23e9d 100755 --- a/scripts/service/novnc/run +++ b/scripts/service/novnc/run @@ -4,4 +4,4 @@ set -eu cd /opt/novnc/utils/websockify/ exec 2>&1 -exec /usr/bin/python3 -m websockify --web /opt/novnc/ 6080 localhost:5900 +exec /usr/bin/python3 -m websockify --web /opt/novnc/ 6080 127.0.0.1:5900