Skip to content

Instantly share code, notes, and snippets.

@gmacario
Last active November 23, 2021 02:40
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gmacario/11385611 to your computer and use it in GitHub Desktop.
Save gmacario/11385611 to your computer and use it in GitHub Desktop.
Can you run GUI apps in Docker?
# From http://stackoverflow.com/questions/16296753/can-you-run-gui-apps-in-a-docker
#
# Firefox over VNC
#
# VERSION 0.1
# DOCKER-VERSION 0.2
from ubuntu:12.04
# make sure the package repository is up to date
run echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
run apt-get update
# Install vnc, xvfb in order to create a 'fake' display and firefox
run apt-get install -y x11vnc xvfb firefox
run mkdir /.vnc
# Setup a password
run x11vnc -storepasswd 1234 ~/.vnc/passwd
# Autostart firefox (might not be the best way to do it, but it does the trick)
run bash -c 'echo "firefox" >> /.bashrc'
@krichter722
Copy link

Running the above commands fails due to

> docker run -p 5900 creack/firefox-vnc x11vnc -forever -usepw -create
Enter VNC password: stty: standard input: Inappropriate ioctl for device
fgets: No such file or directory
stty: standard input: Inappropriate ioctl for device
x11vnc -usepw: could not find a password to use.

on Ubuntu 17.10.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment