Create a Docker image nasqueron/mumble-django with Apache, mod_wsgi and Mumble-Django.
Description
Description
| Status | Subtype | Assigned | Task | ||
|---|---|---|---|---|---|
| Wontfix | dereckson | T381 Validate Mumble server installation | |||
| Wontfix | dereckson | T383 Public Mumble web interface | |||
| Wontfix | dereckson | T391 Create a Docker image for mumble-django |
Event Timeline
Comment Actions
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-djangoNext 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.