Dockerfiles for running headless x11 apps 📦🤕✨
1.4K
Dockerfiles for running headless x11 apps 📦🤕✨
Dockerfile in your projectFROM bengreenier/docker-xvfb:stable
# install glxgears
RUN apt-get update -y \
&& apt-get install --no-install-recommends -y mesa-utils \
&& rm -rf /var/lib/apt/lists/*
CMD glxgears
You can then build and run the image:
docker build . -t my-x11-app
docker run -it --rm --name my-running-app my-x11-app
And glxgears will run in the virtual x11 space.
Are based on their debian variants. We support:
stablestable-slimstretchstrech-slimbusterbuster-slimThese images support build-time variables for customization.
RESOLUTION - Configures the X screen buffer. Default: 1920x1080x24XARGS - Configures X with additional arguments. Default: "" (no value)MIT
Content type
Image
Digest
Size
58.7 MB
Last updated
about 7 years ago
docker pull bengreenier/docker-xvfb:buster-slim