Posted By
bubis on 2022-01-03 10:56:26
| Plus4Emu in Docker
Hello Guys and Girls,
I've spent some time today on solving this problem, maybe it's useful for some of you:
I want to run Plus4Emu on Windows without installing it.
Why? Because I am at work, I am not allowed to install unapproved software but I want to try something real quick.
There is a solution if you have Docker and an X Server installed.
docker run -it --rm -e DISPLAY=host.docker.internal:0.0 -v YOUR_FOLDER_PATH:/root/files --net=host adotsch/plus4emu [optional command]
If no command given it will mount your folder as /root/files and give you a command prompt where you can run p4compress, p4fliconv, p4sconv or plus4emu directly, like:
root@docker-desktop:~# plus4emu -prg files/demo.prg &
Yes, that's all, no installation is needed, everything is installed on the Docker Image adotsch/plus4emu, that is automatically downloaded when you run the above docker command.
|