https://github.com/arnie97/minimal-wine
Debian + Wine + Xvfb + VNC = 370 MB
https://github.com/arnie97/minimal-wine
docker-image dockerfile wine
Last synced: 2 months ago
JSON representation
Debian + Wine + Xvfb + VNC = 370 MB
- Host: GitHub
- URL: https://github.com/arnie97/minimal-wine
- Owner: Arnie97
- License: mit
- Created: 2019-08-01T16:08:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T11:13:40.000Z (over 4 years ago)
- Last Synced: 2025-03-21T21:13:44.851Z (over 1 year ago)
- Topics: docker-image, dockerfile, wine
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
To build this Docker image, execute:
$ sudo docker build . --squash -t minimal-wine
Run a Win32 console application:
$ sudo docker run -tiv YOUR_PATH:/root minimal-wine wine YOUR_APP.EXE
Run a native GUI application:
$ sudo docker run -tPv YOUR_PATH:/root minimal-wine xvfb-run -n 0 -f /root/.Xauthority /root/YOUR_APP
Run a Win32 GUI application:
$ sudo docker run -tPv YOUR_PATH:/root minimal-wine xvfb-run -n 0 -f /root/.Xauthority wine YOUR_APP.EXE
Start the VNC server:
$ sudo docker exec CONTAINER_NAME x11vnc
The VNC server is independent from the X server and GUI applications, and hence could be started on demand. That's especially useful for running a GUI application as a daemon, in which case a continuously running VNC service is reluctant.