mviereck / x11docker

Run GUI applications and desktops in docker and podman containers. Focus on security.
MIT License
5.62k stars 378 forks source link

Is there any x11docker images based on ubuntu? #64

Closed wanhongbo closed 6 years ago

mviereck commented 6 years ago

There is no ubuntu based image from x11docker. Most x11docker images on docker hub are based on debian. Though, you can create Ubuntu based images yourself. Example:

FROM ubuntu:18.04
RUN apt-get update && apt-get install -y --no-install-recommends xterm
CMD xterm

You can also replace FROM debian:stretch in x11docker examples with FROM ubuntu:18.04. Most debian based images will work on an ubuntu base, too.