Page MenuHomeDevCentral

Create a Docker image for mumble-django
Closed, WontfixPublic

Description

Create a Docker image nasqueron/mumble-django with Apache, mod_wsgi and Mumble-Django.

Event Timeline

dereckson raised the priority of this task from to Wishlist.
dereckson updated the task description. (Show Details)
dereckson moved this task to Working on on the Nasqueron Docker deployment squad board.

Debian required packages have been identified by @ledesillusionniste and me.

Our Dockerfile is currently:

#
# Mumble-django Docker image
#

FROM debian:jessie
MAINTAINER Sébastien Santoro aka Dereckson <dereckson+nasqueron-docker@espace-win.org>

RUN apt-get update && apt-get install -y \
    python-zeroc-ice libapache2-mod-wsgi python-imaging python-simplejson mercurial python-pip \
    libjs-extjs libjs-sphinxdoc libjs-underscore python-django python-django-common \
    python-django-extdirect python-django-mumble python-django-registration python-sqlparse python-tz$
    && apt-get clean

RUN cd /opt && hg clone https://bitbucket.org/Svedrin/mumble-django

Next step should be RUN cd /opt/mumble-django && python pyweb/manage.py syncdb, but this is currently interactive. There is a need to request ICE configuration in non interactive mode.

dereckson claimed this task.

Mumble isn't currently in scope.