add new apps
This commit is contained in:
parent
5c2dc4a0a4
commit
6e4f7b213e
35
Dockerfile
35
Dockerfile
@ -28,6 +28,41 @@ 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
|
||||
|
||||
ENV CONTACTS_VERSION=v3.1.3
|
||||
ENV CONTACTS_SHA256_SUM=c66ff52d41262e209397a7b47843bce03aeed7f1d097590d89db70ffd678ad65
|
||||
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
|
||||
|
||||
ENV CALENDAR_VERSION=v1.6.5
|
||||
ENV CALENDAR_SHA256_SUM=62c3ea0459578ba9a54537c25c8101e8e0ca352506e6fa227e5b4aa76854cb13
|
||||
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
|
||||
|
||||
ENV TASKS_VERSION=v0.10.1
|
||||
ENV TASKS_SHA256_SUM=55f36471e5e7f8b3e7fece13de810a5aa511666915e1626e2d5ed065b2470865
|
||||
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=v3.0.0
|
||||
ENV NOTES_SHA256_SUM=8dd54d7f812c8fbd5996484296e93b2b1deeeec35a89d5cdb697c322654da444
|
||||
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=13.1.6
|
||||
ENV NEWS_SHA256_SUM=a2f5b5a347fed41572b74092c41c1c1765803e6ce5b8983fd093d3ad0a390383
|
||||
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
|
||||
|
||||
FROM thallian/php7-fpm:latest
|
||||
|
||||
COPY --from=builder /var/lib/nextcloud /var/lib/nextcloud
|
||||
|
Loading…
Reference in New Issue
Block a user