ArchLinux based docker image with wine and vnc support, supports running Windows applications by using Wine. This project is hosted at https://github.com/wine-gameservers/arch-wine-vnc/
$ docker run -d \
--name arch-wine-vnc \
-e VNC_PASSWORD=winevnc \
-p 5900:5900/tcp \
-v /path/to/application:/opt/applicationname \
-v /etc/localtime:/etc/localtime:ro \
-e PUID=<UID from user> \
-e PGID=<GID from user> \
toetje585/arch-wine-vnc
services:
arch-wine-vnc:
image: toetje585/arch-wine-vnc:latest
container_name: arch-wine-vnc
environment:
- VNC_PASSWORD=winevnc
- PUID=<UID from user>
- PGID=<GID from user>
volumes:
- /path/to/application:/opt/applicationname
- /etc/localtime:/etc/localtime:ro
ports:
- 5900:5900/tcp
13-05-2024: Rebuild image to update wine and other packages