Wine in Docker.
GitHub | GitHub Container Registry | Docker Hub
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/winedocker compose updocker stack deploy --compose-file docker-compose.yml wineNavigate to http://localhost:6080 and login using password.
vncviewer :1 # Connect to 127.0.0.1:5901Start bash with services:
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/wine /sbin/my_init -- bash -lStart bash without services:
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/wine bashCreate a builder:
docker buildx create --name container --driver=docker-containerBuild image:
BUILD_DOCKER_BUILDER=container ./build.shThis image is NOT SECURE because VNC is not a secure protocol. DO NOT use this image directly over the Internet. Wrap the traffic in tunnel.