This commit is contained in:
Jessica Frazelle 2015-04-28 10:30:19 -07:00
parent adcc24b516
commit ed906620f1
3 changed files with 32 additions and 1 deletions

5
.gitignore vendored
View File

@ -23,4 +23,7 @@ Icon
.Spotlight-V100
.Trashes
znc/conf/
znc/conf/
*.swp
*.swo

View File

@ -1,3 +1,10 @@
# Run tor browser in a container
#
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -v /dev/snd:/dev/snd \
# -e DISPLAY=unix$DISPLAY \
# jess/tor-browser
#
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>

21
virtualbox/Dockerfile Normal file
View File

@ -0,0 +1,21 @@
# Run virtualbox in a container
#
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# jess/virtualbox
#
FROM debian:jessie
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
software-properties-common \
--no-install-recommends && \
curl -sSL https://www.virtualbox.org/download/oracle_vbox.asc | apt-key add - && \
echo "deb http://download.virtualbox.org/virtualbox/debian jessie contrib" >> /etc/apt/sources.list.d/virtualbox.list && \
apt-get update && \
apt-get install -y \
virtualbox
ENTRYPOINT [ "/usr/bin/virtualbox" ]