Regularly updated linux-based Wineβ container image
479
An Ubuntu-based Wine container image for running Windows applications in a pure Linux container β no VM, no KubeVirt. Includes XPRAβ and Wineβ for remote X11 application streaming directly to your browser.

To run your own Windows application instead of the default example:
Create a Supervisord config for your app myapp.conf.
[program:myapp]
priority=100
autostart=true
autorestart=true
user=ubuntu
environment=DISPLAY=":10"
command=/usr/bin/wine /opt/myapp.exe
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes=0
stderr_logfile_maxbytes=0
Run the container with your app and config mounted:
```bash
docker run --rm -it
-v /path/to/myapp.exe:/opt/myapp.exe
-v /path/to/myapp.conf:/etc/supervisor/apps/myapp.conf
-p 8080:8080
flashpixx/wine
```
Then open: http://localhost:8080/β Everything runs in kiosk mode β close the app window and it restarts instantly.
Source is available under https://gitlab.com/flashpixx/wineβ
Content type
Image
Digest
sha256:7575e81baβ¦
Size
717.1 MB
Last updated
10 days ago
docker pull flashpixx/wine:0.0.14