summaryrefslogtreecommitdiffstats
path: root/.examples
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2018-08-06 14:40:03 +0200
committerTilo Spannagel <development@tilosp.de>2018-08-06 14:40:03 +0200
commitaa9cd89b82bbde82e100522f5735b2ba6c49dcb9 (patch)
treed8ea3c8b24a778ee02521ff7585557345bb125c9 /.examples
parent68c731298e399dfcdd107b8c14225719fbea5537 (diff)
Fix full Dockerfile example
Diffstat (limited to '.examples')
-rw-r--r--.examples/dockerfiles/full/apache/Dockerfile3
-rw-r--r--.examples/dockerfiles/full/fpm/Dockerfile3
2 files changed, 4 insertions, 2 deletions
diff --git a/.examples/dockerfiles/full/apache/Dockerfile b/.examples/dockerfiles/full/apache/Dockerfile
index 31229792..91122f1b 100644
--- a/.examples/dockerfiles/full/apache/Dockerfile
+++ b/.examples/dockerfiles/full/apache/Dockerfile
@@ -1,6 +1,7 @@
FROM nextcloud:apache
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list \
+ && mkdir -p /usr/share/man/man1 \
&& apt-get update && apt-get install -y \
supervisor \
ffmpeg \
@@ -10,7 +11,7 @@ RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/so
libkrb5-dev \
smbclient \
libsmbclient-dev \
-# LibreOffice \
+# libreoffice \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
&& ln -s "/usr/include/$(dpkg-architecture --query DEB_BUILD_MULTIARCH)/gmp.h" /usr/include/gmp.h \
diff --git a/.examples/dockerfiles/full/fpm/Dockerfile b/.examples/dockerfiles/full/fpm/Dockerfile
index 4798db42..fcd092a7 100644
--- a/.examples/dockerfiles/full/fpm/Dockerfile
+++ b/.examples/dockerfiles/full/fpm/Dockerfile
@@ -1,6 +1,7 @@
FROM nextcloud:fpm
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list \
+ && mkdir -p /usr/share/man/man1 \
&& apt-get update && apt-get install -y \
supervisor \
ffmpeg \
@@ -10,7 +11,7 @@ RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/so
libkrb5-dev \
smbclient \
libsmbclient-dev \
-# LibreOffice \
+# libreoffice \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
&& ln -s "/usr/include/$(dpkg-architecture --query DEB_BUILD_MULTIARCH)/gmp.h" /usr/include/gmp.h \