nextcloud/Dockerfile

113 lines
4.3 KiB
Docker
Raw Normal View History

2020-03-12 09:06:55 +00:00
FROM alpine:3.11 AS builder
2019-03-16 11:41:58 +00:00
2019-10-08 12:08:19 +00:00
ENV NC_VERSION=17.0.0
ENV NC_SHA256_SUM=6081421b33ecdb3130b2bfb2293a3f4045aeb0b471ee570e675de3d931a142a6
2019-03-16 11:41:58 +00:00
RUN wget https://download.nextcloud.com/server/releases/nextcloud-$NC_VERSION.tar.bz2
RUN echo "$NC_SHA256_SUM nextcloud-$NC_VERSION.tar.bz2" | sha256sum -c - || exit 1
RUN mkdir -p /var/lib/nextcloud
RUN tar xjf nextcloud-$NC_VERSION.tar.bz2 -C /var/lib/nextcloud --strip 1
2020-03-12 09:06:55 +00:00
ENV TFA_VERSION=v4.1.2
ENV TFA_SHA256_SUM=b66831ec4fc8cbb10e594b25ec12e90b99e0d41d3d1c1c29544bd9a81e73c470
2019-03-16 11:41:58 +00:00
RUN wget https://github.com/nextcloud/twofactor_totp/releases/download/$TFA_VERSION/twofactor_totp.tar.gz
RUN echo "$TFA_SHA256_SUM twofactor_totp.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/twofactor_totp
RUN tar xzf twofactor_totp.tar.gz -C /var/lib/nextcloud/apps/twofactor_totp --strip 1
2020-03-12 09:08:24 +00:00
ENV U2F_VERSION=v5.0.2
ENV U2F_SHA256_SUM=064739e29140d8f7197bbc0cf46090218e84e97bc9c15b4a4716ae27d8d76bdc
2019-03-16 11:41:58 +00:00
RUN wget https://github.com/nextcloud/twofactor_u2f/releases/download/$U2F_VERSION/twofactor_u2f.tar.gz
RUN echo "$U2F_SHA256_SUM twofactor_u2f.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/twofactor_u2f
RUN tar xzf twofactor_u2f.tar.gz -C /var/lib/nextcloud/apps/twofactor_u2f --strip 1
2020-03-12 09:09:48 +00:00
ENV POLLS_VERSION=v1.3.0
ENV POLLS_SHA256_SUM=5b6038251cef4f1ff0c8300c5b3961436be673734e87cb253c475e34f44fe5cb
2019-03-16 11:41:58 +00:00
RUN wget https://github.com/nextcloud/polls/releases/download/$POLLS_VERSION/polls.tar.gz
RUN echo "$POLLS_SHA256_SUM polls.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/polls
RUN tar xzf polls.tar.gz -C /var/lib/nextcloud/apps/polls --strip 1
2019-10-08 12:08:19 +00:00
ENV CONTACTS_VERSION=v3.1.6
ENV CONTACTS_SHA256_SUM=c82118781b52a6d4455745413ee64ccf642a82667bed899e174e3bba3f6f67cd
2019-06-20 13:24:42 +00:00
RUN wget https://github.com/nextcloud/contacts/releases/download/$CONTACTS_VERSION/contacts.tar.gz
RUN echo "$CONTACTS_SHA256_SUM contacts.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/contacts
RUN tar xzf contacts.tar.gz -C /var/lib/nextcloud/apps/contacts --strip 1
2019-10-08 12:08:19 +00:00
ENV CALENDAR_VERSION=v1.7.1
ENV CALENDAR_SHA256_SUM=dfb995d30938b6f119216b0d42d90cf320107af859ad9d8aea6fba03fbbeb1b4
2019-06-20 13:24:42 +00:00
RUN wget https://github.com/nextcloud/calendar/releases/download/$CALENDAR_VERSION/calendar.tar.gz
RUN echo "$CALENDAR_SHA256_SUM calendar.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/calendar
RUN tar xzf calendar.tar.gz -C /var/lib/nextcloud/apps/calendar --strip 1
2019-10-08 12:15:18 +00:00
ENV TASKS_VERSION=0.11.3
2019-10-08 12:08:19 +00:00
ENV TASKS_SHA256_SUM=20796e91888c78bc4f6dc73f28dcf34a3e04ed2854e9ce5f287c48bf1417df23
2019-06-20 13:24:42 +00:00
RUN wget https://github.com/nextcloud/tasks/releases/download/$TASKS_VERSION/tasks.tar.gz
RUN echo "$TASKS_SHA256_SUM tasks.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/tasks
RUN tar xzf tasks.tar.gz -C /var/lib/nextcloud/apps/tasks --strip 1
2019-10-08 12:17:21 +00:00
ENV NOTES_VERSION=3.0.3
2019-10-08 12:08:19 +00:00
ENV NOTES_SHA256_SUM=c36c65eccf0e16598d037118be68010738684aa52c6fdbfecc8224c9cfba05e4
2019-06-20 13:24:42 +00:00
RUN wget https://github.com/nextcloud/notes/releases/download/$NOTES_VERSION/notes.tar.gz
RUN echo "$NOTES_SHA256_SUM notes.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/notes
RUN tar xzf notes.tar.gz -C /var/lib/nextcloud/apps/notes --strip 1
2019-10-08 12:08:19 +00:00
ENV NEWS_VERSION=14.0.0
ENV NEWS_SHA256_SUM=eb284f35a4649b0014a65a530fcff095877e95f7d439df33025f97f9c695df46
2019-06-20 13:24:42 +00:00
RUN wget https://github.com/nextcloud/news/releases/download/$NEWS_VERSION/news.tar.gz
RUN echo "$NEWS_SHA256_SUM news.tar.gz" | sha256sum -c - || exit 1
RUN mkdir /var/lib/nextcloud/apps/news
RUN tar xzf news.tar.gz -C /var/lib/nextcloud/apps/news --strip 1
2018-11-26 17:12:41 +00:00
FROM thallian/php7-fpm:latest
2016-08-31 12:55:12 +00:00
2019-03-16 11:41:58 +00:00
COPY --from=builder /var/lib/nextcloud /var/lib/nextcloud
ENV FPMUSER=nginx
ENV FPMGROUP=nginx
2019-03-17 16:46:30 +00:00
ENV PHP_MEMORY_LIMIT=512M
2016-11-01 13:40:10 +00:00
2017-01-30 12:21:49 +00:00
RUN apk add --no-cache \
nginx \
2019-03-16 11:41:58 +00:00
ffmpeg \
php7-cli \
2019-03-17 17:22:10 +00:00
php7-pecl-apcu \
2018-01-30 09:47:09 +00:00
php7-opcache \
2018-01-30 09:56:04 +00:00
php7-pcntl \
2019-03-16 11:41:58 +00:00
php7-imagick \
php7-ctype \
php7-curl \
php7-dom \
php7-gd \
php7-iconv \
php7-xml \
php7-json \
php7-mbstring \
php7-openssl \
php7-posix \
php7-session \
php7-simplexml \
php7-xmlreader \
php7-xmlwriter \
php7-zip \
php7-zlib \
php7-pdo_pgsql \
php7-bz2 \
php7-fileinfo \
php7-intl \
php7-exif \
php7-ldap
2016-11-01 13:40:10 +00:00
2016-08-31 12:55:12 +00:00
RUN chown -R nginx:nginx /var/lib/nextcloud
RUN mkdir /run/nginx
2018-01-29 21:08:27 +00:00
RUN rm /etc/nginx/conf.d/default.conf
2016-08-31 12:55:12 +00:00
2016-11-01 13:40:10 +00:00
ADD /rootfs /
2016-08-31 12:55:12 +00:00
2019-03-16 11:41:58 +00:00
VOLUME [ "/var/lib/nextcloud/data", "/var/lib/nextcloud/config" ]