You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setup example to run Xvfb in docker image used by xpra on host.
Dockerfile:
FROM debian:stretch-slim
RUN apt-get update
RUN apt-get install -y xvfb
CMD Xvfb :20 -listen tcp -screen 0 4720x3840x24 -ac
Script:
# x11docker running Xvfb.
# read and --showpid1 serve to continue script after container is up and running
read dummy < <(x11docker --tty --name xvfb --showpid1 -- x11docker/xvfb)
# Get IP of container:
Containerip=$(docker inspect --format '{{ .NetworkSettings.IPAddress }}' xvfb)
# Run xpra server
xpra start $Containerip:20 --use-display
xpra client fails here with: unknown format for display name: 172.17.0.3:20. I am not sure if this is due to my recent switch to the python3 version. If I provide DISPLAY without IP I get cannot find live server for display :20
The text was updated successfully, but these errors were encountered:
Coming from #121
Setup example to run Xvfb in docker image used by xpra on host.
Dockerfile:
Script:
xpra client fails here with:
unknown format for display name: 172.17.0.3:20
. I am not sure if this is due to my recent switch to the python3 version. If I provideDISPLAY
without IP I getcannot find live server for display :20
The text was updated successfully, but these errors were encountered: