Thanks a lot Veratyr! Great idea! But there is something that I don't get, you upload the docker file to a linux vps ? May I know what vps are you using?

Also although I have used docker files for a mooc in deep learning I don't quite understand some of the steps

-In step 3) and 4)
Quote:

3) Run docker build -t zorro .. This builds the Docker image.

4) Run docker run -i -t -d -p <port>:5901 -v <zorro location>:/opt/zorro:z --name zorro --restart=always zorro. should be the location of your Zorro install (the folder that contains Zorro.exe).


In step 3 I don't understand how you involve wine.tar.gz and Dockerfile in the creation of the docker image and where do I put xstartup and start.sh files

In step 4 I don't understand what placeholder you mean to replace with zorro location, is it something like this -assuming zorro is installed in /usr/local - ?

docker run -i -t -d -p 127.0.0.1:80:5901 -v /usr/local:/opt/zorro:z --name zorro --restart=always

Concerning VNC, do you use it to connect to the docker or to connect to the linux vps where the docker is?

Sorry if any question is dumb!