Created
March 17, 2016 14:01
-
-
Save mageddo/04796b62409465883abc to your computer and use it in GitHub Desktop.
Running Ubuntu GUI on Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment