Update stable containers to 3.2 suite release.

This commit is contained in:
Abhilash Raj
2018-07-26 18:10:37 -07:00
committed by Abhilash Raj
parent 0eda00bc41
commit 274965cced
4 changed files with 11 additions and 10 deletions

View File

@@ -9,8 +9,9 @@ COPY docker-entrypoint.sh /usr/local/bin/
RUN apk update \
&& apk add --virtual build-deps gcc python3-dev musl-dev postgresql-dev libffi-dev \
&& apk add bash su-exec postgresql-client mysql-client curl \
&& pip install -U pip \
&& pip install psycopg2 \
mailman==3.1.1 \
mailman==3.2 \
mailman-hyperkitty==1.1.0 \
pymysql \
&& apk del build-deps \

View File

@@ -2,7 +2,7 @@ version: '2'
services:
mailman-core:
image: maxking/mailman-core:0.1
image: maxking/mailman-core:0.2
container_name: mailman-core
hostname: mailman-core
volumes:
@@ -22,7 +22,7 @@ services:
ipv4_address: 172.19.199.2
mailman-web:
image: maxking/mailman-web:0.1
image: maxking/mailman-web:0.2
container_name: mailman-web
hostname: mailman-web
depends_on:

View File

@@ -1,4 +1,4 @@
FROM python:2.7-alpine3.6
FROM python:3.6-alpine3.7
MAINTAINER Abhilash Raj
@@ -15,11 +15,11 @@ RUN set -ex \
postgresql-dev mariadb-dev \
&& apk add --no-cache --virtual .mailman-rundeps bash sassc \
postgresql-client mysql-client py-mysqldb curl mailcap \
&& pip install -U django==1.11 pip \
&& pip install mailmanclient==3.1.1 \
postorius==1.1.2 \
hyperkitty==1.1.4 \
django-mailman3==1.1.0 \
&& pip install -U django==2.0.5 pip \
&& pip install mailmanclient==3.2.0 \
postorius==1.2.1 \
hyperkitty==1.2.0 \
django-mailman3==1.2.0 \
whoosh \
uwsgi \
psycopg2 \

View File

@@ -1,4 +1,4 @@
FROM python:3.6-alpine3.6
FROM python:3.6-alpine3.7
MAINTAINER Abhilash Raj