A minimal container to support running Windows command line programs via wine
435
Reference for getting wine working:
https://medium.com/faun/running-windows-app-headless-in-docker-15ff008f2f16
sudo apt-get remove docker docker-engine docker.io
sudo apt-get install docker.io
sudo systemctl enable docker
sudo systemctl start docker
sudo docker build --tag archang31/windows-command-line:1.0 .
docker run -it archang31/windows-command-line:1.0 /bin/bash
# start xvfb to handle the display
root@be1ee8cd1972:/# Xvfb :0 -screen 0 1024x768x16 &
[1] 10
# run whatever windows command-line program you want
root@be1ee8cd1972:/# wine-stable cmd.exe
Microsoft Windows 6.1.7601 (3.0)
Z:\>dir
Volume in drive Z has no label.
Volume Serial Number is 0000-0000
...
sudo docker login
sudo docker push archang31/windows-command-line:1.0
Content type
Image
Digest
Size
315.8 MB
Last updated
almost 6 years ago
docker pull archang31/windows-command-line