Compare commits

..

7 Commits

Author SHA1 Message Date
3086c9db9b Merge branch 'master' of https://github.com/nextcloud/docker 2018-05-11 09:17:00 +02:00
Tilo Spannagel
53e1809aeb Run update.sh 2018-05-10 12:50:44 +02:00
Tilo Spannagel
6b09d293af Cleanup php modules 2018-05-10 12:50:44 +02:00
Tilo Spannagel
adff4fe439
Merge pull request #330 from nextcloud/production-13
Ship 13 on production channel
2018-05-07 14:17:23 +02:00
Tilo Spannagel
5f0e65f0c2
Ship 13 on production channel 2018-05-07 13:32:27 +02:00
Tilo Spannagel
763622d867
Merge pull request #322 from nextcloud/13.0.2-maintenance
Update production and stable release channel
2018-04-26 14:04:48 +02:00
Tilo Spannagel
532d3c4fb8
Update production and stable release channel 2018-04-26 13:27:22 +02:00
9 changed files with 2 additions and 26 deletions

View File

@ -43,14 +43,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -37,14 +37,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -43,14 +43,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -43,14 +43,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -37,14 +37,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -43,14 +43,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -36,14 +36,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -42,14 +42,11 @@ RUN set -ex; \
gd \
intl \
ldap \
mbstring \
mcrypt \
mysqli \
opcache \
pcntl \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
; \
pecl install \

View File

@ -2,8 +2,8 @@
set -Eeuo pipefail
declare -A release_channel=(
[production]='12.0.6'
[stable]='13.0.1'
[production]='13.0.2'
[stable]='13.0.2'
)
self="$(basename "$BASH_SOURCE")"