mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-18 02:56:42 +01:00
commit
9e05789182
23 changed files with 46 additions and 10 deletions
4
.config/apcu.config.php
Normal file
4
.config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -44,6 +44,8 @@ RUN a2enmod rewrite
|
|||
ENV NEXTCLOUD_VERSION 10.0.5
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -69,7 +71,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["apache2-foreground"]
|
||||
|
|
4
10.0/apache/config/apcu.config.php
Normal file
4
10.0/apache/config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -42,6 +42,8 @@ RUN set -ex \
|
|||
ENV NEXTCLOUD_VERSION 10.0.5
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -67,7 +69,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["php-fpm"]
|
||||
|
|
4
10.0/fpm/config/apcu.config.php
Normal file
4
10.0/fpm/config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -45,6 +45,8 @@ RUN a2enmod rewrite
|
|||
ENV NEXTCLOUD_VERSION 11.0.3
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -70,7 +72,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["apache2-foreground"]
|
||||
|
|
4
11.0/apache/config/apcu.config.php
Normal file
4
11.0/apache/config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -43,6 +43,8 @@ RUN set -ex \
|
|||
ENV NEXTCLOUD_VERSION 11.0.3
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -68,7 +70,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["php-fpm"]
|
||||
|
|
4
11.0/fpm/config/apcu.config.php
Normal file
4
11.0/fpm/config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -45,6 +45,8 @@ RUN a2enmod rewrite
|
|||
ENV NEXTCLOUD_VERSION 12.0.0
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -70,7 +72,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["apache2-foreground"]
|
||||
|
|
4
12.0/apache/config/apcu.config.php
Normal file
4
12.0/apache/config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -43,6 +43,8 @@ RUN set -ex \
|
|||
ENV NEXTCLOUD_VERSION 12.0.0
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -68,7 +70,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["php-fpm"]
|
||||
|
|
4
12.0/fpm/config/apcu.config.php
Normal file
4
12.0/fpm/config/apcu.config.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$CONFIG = array (
|
||||
'memcache.local' => '\OC\Memcache\APCu',
|
||||
);
|
|
@ -45,6 +45,8 @@ RUN a2enmod rewrite
|
|||
ENV NEXTCLOUD_VERSION %%VERSION%%
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -70,7 +72,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["%%CMD%%"]
|
||||
|
|
|
@ -44,6 +44,8 @@ RUN a2enmod rewrite
|
|||
ENV NEXTCLOUD_VERSION %%VERSION%%
|
||||
VOLUME /var/www/html
|
||||
|
||||
COPY config/* /usr/src/nextcloud/config/
|
||||
|
||||
RUN curl -fsSL -o nextcloud.tar.bz2 \
|
||||
"https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||
&& curl -fsSL -o nextcloud.tar.bz2.asc \
|
||||
|
@ -69,7 +71,6 @@ RUN curl -fsSL -o nextcloud.tar.bz2 \
|
|||
&& chmod +x /usr/src/nextcloud/occ
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
COPY apps.config.php /usr/src/nextcloud/config/apps.config.php
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
CMD ["%%CMD%%"]
|
||||
|
|
|
@ -56,8 +56,8 @@ for latest in "${latests[@]}"; do
|
|||
# Copy the docker-entrypoint.
|
||||
cp docker-entrypoint.sh "$version/$variant/docker-entrypoint.sh"
|
||||
|
||||
# Copy apps.config.php
|
||||
cp apps.config.php "$version/$variant/apps.config.php"
|
||||
# Copy the config directory
|
||||
cp -rT .config "$version/$variant/config"
|
||||
|
||||
for arch in i386 amd64; do
|
||||
travisEnv='\n - env: VERSION='"$version"' VARIANT='"$variant"' ARCH='"$arch$travisEnv"
|
||||
|
|
Loading…
Reference in a new issue