Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM ubuntu:bionic

ENV TZ=Europe/Paris
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN apt-get update &&\
apt-get install -y python2.7 python-gtk2 glade python-gtk-vnc python-glade2 python-configobj python-setuptools python-raven

RUN mkdir -p /opt/openxenmanager
COPY . /opt/openxenmanager
RUN cd /opt/openxenmanager && python setup.py install

CMD openxenmanager
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ pip install raven
OpenXenManager runs has been tested to run on Linux or Windows and should work
on MacOSX as well.

Running OpenXenManager in Docker
================================

Build:

docker build -t openxenmanger .

Run:

docker run --rm -it -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix openxenmanager openxenmanager

Help / bug reports
==================
Expand Down