docker run -it --rm tenox7/openvms73:latestLogin as system password is systempassword.
To telnet/ftp/rlogin/rsh to the guest add -p, for example for telnet:
docker run -it --rm -p 23:23 tenox7/openvms73:latestConveniently this container now contains a VNC Server with X11 XDMCP Query. You can just VNC in to the container! The password is vncvms. On MacOS you can simply open vnc://127.0.0.1.
docker run -it --rm -p 5900:5900 tenox7/openvms73:latestChange resolution: -e GEOMETRY=1920x1200
To forward X11 XDMCP Query add -p 177:177/udp:
docker run -it --rm -p 23:23 -p 177:177/udp tenox7/openvms73:latestI was not able to connect to it unless the client display is :0. In particular Xnest -ac -query :1 did not work for me. Only :0 does. If you know how to fix it, LMK.
WARNING: by default the guest is ephemeral, the state is NOT preserved once you exit from the container.
In order to persist the data disk mount /data as a volume or bind mount:
docker run -it --rm -v path:/data tenox7/openvms73:latestThe disk image and nvram is stored in /data in the container.
Ctrl^E in the terminal will shut down SIMH.
