Open TomHutter opened 1 year ago
In Section Manually running with docker run commands there seems to be a typo with the XAUTHORITY volume:
docker run -it \ --rm \ --hostname="$(hostname)" \ --env="DISPLAY" \ --volume="${XAUTHORITY:-${HOME}/.Xauthority}:/root/.Xauthority:ro" \ --volume="/tmp/.X11-unix:/tmp/.X11-unix:ro" \ scottyhardy/docker-wine /bin/bash
This works:
docker run -it \ --rm \ --hostname="$(hostname)" \ --env="DISPLAY" \ --volume="${XAUTHORITY}:/root/.Xauthority:ro" \ --volume="/tmp/.X11-unix:/tmp/.X11-unix:ro" \ scottyhardy/docker-wine /bin/bash
In Section Manually running with docker run commands there seems to be a typo with the XAUTHORITY volume:
This works: