123 lines
5.3 KiB
Docker
123 lines
5.3 KiB
Docker
FROM docker.io/alpine:3.16 AS builder
|
|
|
|
ENV NC_VERSION=25.0.1
|
|
ENV NC_SHA256_SUM=72d4076924caf19139c40178597af6211799e20440ce196fb43b9c4e47d77515
|
|
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
|
|
|
|
ENV TFA_VERSION=v6.4.1
|
|
ENV TFA_SHA256_SUM=59ad8feada69ef92310ac4c6e01e4343cfa24f347bca32818b864305cbfe00e2
|
|
RUN wget https://github.com/nextcloud-releases/twofactor_totp/releases/download/$TFA_VERSION/twofactor_totp-$TFA_VERSION.tar.gz
|
|
RUN echo "$TFA_SHA256_SUM twofactor_totp-$TFA_VERSION.tar.gz" | sha256sum -c - || exit 1
|
|
RUN rm -r /var/lib/nextcloud/apps/twofactor_totp
|
|
RUN mkdir /var/lib/nextcloud/apps/twofactor_totp
|
|
RUN tar xzf twofactor_totp-$TFA_VERSION.tar.gz -C /var/lib/nextcloud/apps/twofactor_totp --strip 1
|
|
|
|
ENV POLLS_VERSION=4.0.0
|
|
ENV POLLS_SHA256_SUM=0459e3643bed174d4537909501124eac993cc385f92f2a72a1c1f1c7df0782bb
|
|
RUN wget https://github.com/nextcloud/polls/releases/download/v$POLLS_VERSION/polls-$POLLS_VERSION.tar.gz
|
|
RUN echo "$POLLS_SHA256_SUM polls-$POLLS_VERSION.tar.gz" | sha256sum -c - || exit 1
|
|
RUN mkdir /var/lib/nextcloud/apps/polls
|
|
RUN tar xzf polls-$POLLS_VERSION.tar.gz -C /var/lib/nextcloud/apps/polls --strip 1
|
|
|
|
ENV CONTACTS_VERSION=v5.0.1
|
|
ENV CONTACTS_SHA256_SUM=bdd4b0ee81760ffdabe71974c14c8e7d05e9d256e058279d22e567f472a4170b
|
|
RUN wget https://github.com/nextcloud-releases/contacts/releases/download/$CONTACTS_VERSION/contacts-$CONTACTS_VERSION.tar.gz
|
|
RUN echo "$CONTACTS_SHA256_SUM contacts-$CONTACTS_VERSION.tar.gz" | sha256sum -c - || exit 1
|
|
RUN mkdir /var/lib/nextcloud/apps/contacts
|
|
RUN tar xzf contacts-$CONTACTS_VERSION.tar.gz -C /var/lib/nextcloud/apps/contacts --strip 1
|
|
|
|
ENV CALENDAR_VERSION=v4.1.0
|
|
ENV CALENDAR_SHA256_SUM=2b98ea0e0ba4ca5211122e5fe2b4b63853f7deed32b66988e64b56f2e9160a39
|
|
RUN wget https://github.com/nextcloud-releases/calendar/releases/download/$CALENDAR_VERSION/calendar-$CALENDAR_VERSION.tar.gz
|
|
RUN echo "$CALENDAR_SHA256_SUM calendar-$CALENDAR_VERSION.tar.gz" | sha256sum -c - || exit 1
|
|
RUN mkdir /var/lib/nextcloud/apps/calendar
|
|
RUN tar xzf calendar-$CALENDAR_VERSION.tar.gz -C /var/lib/nextcloud/apps/calendar --strip 1
|
|
|
|
ENV TASKS_VERSION=v0.14.5
|
|
ENV TASKS_SHA256_SUM=fdfa3168ac80eaef3e2de5009eee02a369acc8d35dfd8283d1f25423bdf3c532
|
|
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
|
|
|
|
ENV NOTES_VERSION=v4.6.0
|
|
ENV NOTES_SHA256_SUM=463126bbeb96f54c6a4876b680c6cff0951ddc65f3bb45d23f23044db80bae7b
|
|
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
|
|
|
|
ENV NEWS_VERSION=19.0.0
|
|
ENV NEWS_SHA256_SUM=9551781fdbfb6d2c3cd77ee57eae0fb1583c7b54e9720bc955053f51541f4a86
|
|
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
|
|
|
|
ENV MASTODON_INTEGRATION_VERSION=1.0.3
|
|
ENV MASTODON_INTEGRATION_SHA256_SUM=ff3a498dfd230950565c3091b9610afc80dccd17b4f219aa35a2109b22d091b4
|
|
RUN wget https://github.com/nextcloud/integration_mastodon/releases/download/v$MASTODON_INTEGRATION_VERSION/integration_mastodon-$MASTODON_INTEGRATION_VERSION.tar.gz
|
|
RUN echo "$MASTODON_INTEGRATION_SHA256_SUM integration_mastodon-$MASTODON_INTEGRATION_VERSION.tar.gz" | sha256sum -c - || exit 1
|
|
RUN mkdir /var/lib/nextcloud/apps/integration_mastodon
|
|
RUN tar xzf integration_mastodon-$MASTODON_INTEGRATION_VERSION.tar.gz -C /var/lib/nextcloud/apps/integration_mastodon --strip 1
|
|
|
|
ENV SOCIAL_LOGIN_VERSION=v5.1.2
|
|
ENV SOCIAL_LOGIN_SHA256_SUM=6cf880cb384b6debb32551bc49688c99998a798a5a4461a227f25021892461bc
|
|
RUN wget https://github.com/zorn-v/nextcloud-social-login/releases/download/$SOCIAL_LOGIN_VERSION/release.tar.gz
|
|
RUN echo "$SOCIAL_LOGIN_SHA256_SUM release.tar.gz" | sha256sum -c - || exit 1
|
|
RUN mkdir /var/lib/nextcloud/apps/sociallogin
|
|
RUN tar xzf release.tar.gz -C /var/lib/nextcloud/apps/sociallogin --strip 1
|
|
|
|
|
|
FROM docker.io/thallian/php8-fpm:3.16
|
|
|
|
ENV FPMUSER=nginx
|
|
ENV FPMGROUP=nginx
|
|
ENV PHP_MEMORY_LIMIT=512M
|
|
|
|
RUN apk add --no-cache \
|
|
nginx \
|
|
ffmpeg \
|
|
php8-cli \
|
|
php8-pecl-apcu \
|
|
php8-opcache \
|
|
php8-pcntl \
|
|
php8-ctype \
|
|
php8-curl \
|
|
php8-dom \
|
|
php8-gd \
|
|
php8-iconv \
|
|
php8-xml \
|
|
php8-json \
|
|
php8-mbstring \
|
|
php8-openssl \
|
|
php8-posix \
|
|
php8-session \
|
|
php8-simplexml \
|
|
php8-xmlreader \
|
|
php8-xmlwriter \
|
|
php8-zip \
|
|
php8-zlib \
|
|
php8-pdo_pgsql \
|
|
php8-bz2 \
|
|
php8-fileinfo \
|
|
php8-intl \
|
|
php8-exif \
|
|
php8-bcmath \
|
|
php8-gmp \
|
|
php8-imap \
|
|
dcron
|
|
|
|
COPY --from=builder --chown=nginx:nginx /var/lib/nextcloud /var/lib/nextcloud
|
|
|
|
RUN rm /etc/nginx/http.d/default.conf
|
|
|
|
ENV S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0
|
|
|
|
ADD /rootfs /
|
|
|
|
VOLUME [ "/var/lib/nextcloud/data", "/var/lib/nextcloud/config" ]
|