2015-04-28 19:30:19 +02:00
|
|
|
# Run virtualbox in a container
|
|
|
|
#
|
2015-06-09 07:26:07 +02:00
|
|
|
# docker run -d \
|
|
|
|
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
2015-06-05 20:55:25 +02:00
|
|
|
# -e DISPLAY=unix$DISPLAY \
|
2015-06-09 07:26:07 +02:00
|
|
|
# --privileged \
|
|
|
|
# --name virtualbox \
|
2015-06-05 20:55:25 +02:00
|
|
|
# jess/virtualbox
|
2015-04-28 19:30:19 +02:00
|
|
|
#
|
2015-06-09 07:26:07 +02:00
|
|
|
# On first run it will throw an error that you need to
|
|
|
|
# recompile the kernel module with: /etc/init.d/vboxdrv setup
|
|
|
|
#
|
|
|
|
# Here is how you get it to work:
|
|
|
|
# copy the files you need for the module from the container that
|
|
|
|
# is currently running to your host
|
|
|
|
#
|
|
|
|
# first the script:
|
|
|
|
# docker cp virtualbox:/etc/init.d/vboxdrv .
|
|
|
|
#
|
|
|
|
# then the src:
|
|
|
|
# docker cp virtualbox:/usr/src/vboxhost-4.3.28 /usr/src/
|
|
|
|
#
|
|
|
|
# then the share
|
|
|
|
# cp virtualbox:/usr/share/virtualbox /usr/share
|
|
|
|
#
|
|
|
|
# then run the script:
|
|
|
|
# ./vboxdrv setup
|
|
|
|
#
|
|
|
|
# it will recompile the module, you can then see it in lsmod
|
|
|
|
#
|
|
|
|
# then you can remove all the shit you copied
|
|
|
|
# rm -rf /usr/src/vboxhost*
|
|
|
|
# rm -rf /usr/share/virtualbox
|
|
|
|
# rm vboxdrv
|
|
|
|
#
|
2015-04-28 19:30:19 +02:00
|
|
|
FROM debian:jessie
|
|
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
2015-06-05 19:24:11 +02:00
|
|
|
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 \
|
2015-06-07 02:48:44 +02:00
|
|
|
virtualbox \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2015-04-28 19:30:19 +02:00
|
|
|
|
2015-06-05 19:24:11 +02:00
|
|
|
ENTRYPOINT [ "/usr/bin/virtualbox" ]
|