https://github.com/webcomics/wine-docker
Docker image with wine/wine-staging
https://github.com/webcomics/wine-docker
docker docker-image hacktoberfest wine winehq
Last synced: 5 months ago
JSON representation
Docker image with wine/wine-staging
- Host: GitHub
- URL: https://github.com/webcomics/wine-docker
- Owner: webcomics
- License: mit
- Created: 2016-09-25T21:00:26.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-11-01T00:37:54.000Z (8 months ago)
- Last Synced: 2025-11-01T02:26:21.783Z (8 months ago)
- Topics: docker, docker-image, hacktoberfest, wine, winehq
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/tobix/wine
- Size: 83 KB
- Stars: 15
- Watchers: 3
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockerfied wine & wine-staging


[](https://github.com/webcomics/wine-docker/actions/workflows/deploy.yaml)



This is a docker container with wine or wine-staging installed. See
https://www.winehq.org/ https://wine-staging.com/ for details.
## Tags
This repository provides different tags for different versions of Wine:
| Tag | Version |
| --- | --- |
| stable | The latest stable version of wine (at the time of writing, 10.0) |
| devel | The latest development version of wine |
| staging | The latest staging version of wine |
## UI via Xvfb
Xvfb is installed if you need to run something with GUI. Prepend your commands
with xvfb-run to use it. Since xvfb-run forks the real Xvfb binary, [tini] is
used as an entrypoint, otherwise xvfb-run hangs.
If you want to run multiple wine processes with Xvfb, wrap then in one Xvfb
call instead of spawning multiple Xvfb instances:
xvfb-run sh -c "\
wine foo.exe && \
wine bar.exe && \
wineserver -w"
[tini]: https://github.com/krallin/tini