Sign inSign up

flashpixx/wine

By flashpixx

β€’Updated 10 days ago

Regularly updated linux-based Wine⁠ container image

Image
Integration & delivery
Operating systems
0

479

flashpixx/wine repository overview

⁠Wine

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.

β πŸš€ Features

  • No install pain: runs Windows apps without a VM
  • Browser-native UI: XPRA HTML5 client, no local X11 needed
  • Kiosk mode: auto-restart on close – perfect for locked-down sessions
  • Container-ready: works in Docker, Kubernetes, Podman

β πŸ›  Quickstart

To run your own Windows application instead of the default example:

  1. 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
    
  2. 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 ```

  3. Then open: http://localhost:8080/⁠ Everything runs in kiosk mode – close the app window and it restarts instantly.

⁠Source

Source is available under https://gitlab.com/flashpixx/wine⁠

Tag summary

Content type

Image

Digest

sha256:7575e81ba…

Size

717.1 MB

Last updated

10 days ago

docker pull flashpixx/wine:0.0.14