Wolfenscii is a clone of the venerable Wolfenstein 3D using only ASCII characters for his graphical rendering. Wolfenscii is written in Python 2. Try it here.
python wolfenscii_client.pyThis method allow you to deploy wolfenscii in a container and make it availlable via ssh.
- First build the image
docker build -t w -f Dockerfile_ssh .- Then run the container and forward the ssh port
docker run -d --name wolfenscii -p 2222:22 w
# or
docker run -it --rm -p 2222:22 w- Connect remotely, password is "wolf"
ssh -p 2222 wolf@yourhostname