mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 12:29:16 +00:00
nextcloud: fixes #17
This commit is contained in:
parent
1269a34a11
commit
98cc02aab1
@ -14,6 +14,7 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
|
|||||||
supervisor \
|
supervisor \
|
||||||
openssl \
|
openssl \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
libsmbclient \
|
||||||
tini@commuedge \
|
tini@commuedge \
|
||||||
php7@testing \
|
php7@testing \
|
||||||
php7-fpm@testing \
|
php7-fpm@testing \
|
||||||
@ -32,16 +33,19 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
|
|||||||
php7-pdo_mysql@testing \
|
php7-pdo_mysql@testing \
|
||||||
php7-pdo_pgsql@testing \
|
php7-pdo_pgsql@testing \
|
||||||
php7-pgsql@testing \
|
php7-pgsql@testing \
|
||||||
|
php7-sqlite3@testing \
|
||||||
php7-zlib@testing \
|
php7-zlib@testing \
|
||||||
php7-zip@testing \
|
php7-zip@testing \
|
||||||
php7-xmlreader@testing \
|
php7-xmlreader@testing \
|
||||||
php7-posix@testing \
|
php7-posix@testing \
|
||||||
php7-openssl@testing \
|
php7-openssl@testing \
|
||||||
php7-ldap@testing \
|
php7-ldap@testing \
|
||||||
|
php7-ftp@testing \
|
||||||
php7-apcu@testing \
|
php7-apcu@testing \
|
||||||
|
php7-redis@testing \
|
||||||
&& mkdir /nextcloud && cd /tmp \
|
&& mkdir /nextcloud && cd /tmp \
|
||||||
&& wget -q https://download.nextcloud.com/server/prereleases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2 \
|
&& wget -q https://download.nextcloud.com/server/prereleases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2 \
|
||||||
&& tar xjf latest.tar.bz2 --strip 1 -C /nextcloud \
|
&& tar xjf nextcloud-${NEXTCLOUD_VERSION}.tar.bz2 --strip 1 -C /nextcloud \
|
||||||
&& apk del ${BUILD_DEPS} \
|
&& apk del ${BUILD_DEPS} \
|
||||||
&& rm -rf /var/cache/apk/* /tmp/*
|
&& rm -rf /var/cache/apk/* /tmp/*
|
||||||
|
|
||||||
@ -60,6 +64,6 @@ VOLUME /data /config /apps2
|
|||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
||||||
LABEL description="A server software for creating file hosting services" \
|
LABEL description="A server software for creating file hosting services" \
|
||||||
nextcloud="Nextcloud daily build"
|
nextcloud="Nextcloud ${NEXTCLOUD_VERSION}"
|
||||||
|
|
||||||
CMD ["/sbin/tini","--","run.sh"]
|
CMD ["/sbin/tini","--","run.sh"]
|
||||||
|
@ -15,6 +15,7 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
|
|||||||
supervisor \
|
supervisor \
|
||||||
openssl \
|
openssl \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
libsmbclient \
|
||||||
tini@commuedge \
|
tini@commuedge \
|
||||||
php7@testing \
|
php7@testing \
|
||||||
php7-fpm@testing \
|
php7-fpm@testing \
|
||||||
@ -33,13 +34,16 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
|
|||||||
php7-pdo_mysql@testing \
|
php7-pdo_mysql@testing \
|
||||||
php7-pdo_pgsql@testing \
|
php7-pdo_pgsql@testing \
|
||||||
php7-pgsql@testing \
|
php7-pgsql@testing \
|
||||||
|
php7-sqlite3@testing \
|
||||||
php7-zlib@testing \
|
php7-zlib@testing \
|
||||||
php7-zip@testing \
|
php7-zip@testing \
|
||||||
php7-xmlreader@testing \
|
php7-xmlreader@testing \
|
||||||
php7-posix@testing \
|
php7-posix@testing \
|
||||||
php7-openssl@testing \
|
php7-openssl@testing \
|
||||||
php7-ldap@testing \
|
php7-ldap@testing \
|
||||||
|
php7-ftp@testing \
|
||||||
php7-apcu@testing \
|
php7-apcu@testing \
|
||||||
|
php7-redis@testing \
|
||||||
&& mkdir /nextcloud && cd /tmp \
|
&& mkdir /nextcloud && cd /tmp \
|
||||||
&& NEXTCLOUD_TARBALL="nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
&& NEXTCLOUD_TARBALL="nextcloud-${NEXTCLOUD_VERSION}.tar.bz2" \
|
||||||
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL} \
|
&& wget -q https://download.nextcloud.com/server/releases/${NEXTCLOUD_TARBALL} \
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
- Data and apps persistence (easy to update, just recreate the container).
|
- Data and apps persistence (easy to update, just recreate the container).
|
||||||
- OPCache (opcode cache) & APCu (data store) already configured.
|
- OPCache (opcode cache) & APCu (data store) already configured.
|
||||||
- system cron configured (15min periodic), replaces AJAX cron.
|
- system cron configured (15min periodic), replaces AJAX cron.
|
||||||
- MySQL and PostgreSQL support (server not built-in).
|
- MySQL, PostgreSQL (server not built-in) and sqlite3 support.
|
||||||
- LDAP support.
|
- Redis, FTP, SMB, LDAP support.
|
||||||
- UID/GID flexibility.
|
- UID/GID flexibility.
|
||||||
|
|
||||||
#### Tags
|
#### Tags
|
||||||
|
@ -12,6 +12,7 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
|
|||||||
supervisor \
|
supervisor \
|
||||||
openssl \
|
openssl \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
libsmbclient \
|
||||||
tini@commuedge \
|
tini@commuedge \
|
||||||
php7@testing \
|
php7@testing \
|
||||||
php7-fpm@testing \
|
php7-fpm@testing \
|
||||||
@ -30,13 +31,16 @@ RUN echo "@commuedge https://nl.alpinelinux.org/alpine/edge/community" >> /etc/a
|
|||||||
php7-pdo_mysql@testing \
|
php7-pdo_mysql@testing \
|
||||||
php7-pdo_pgsql@testing \
|
php7-pdo_pgsql@testing \
|
||||||
php7-pgsql@testing \
|
php7-pgsql@testing \
|
||||||
|
php7-sqlite3@testing \
|
||||||
php7-zlib@testing \
|
php7-zlib@testing \
|
||||||
php7-zip@testing \
|
php7-zip@testing \
|
||||||
php7-xmlreader@testing \
|
php7-xmlreader@testing \
|
||||||
php7-posix@testing \
|
php7-posix@testing \
|
||||||
php7-openssl@testing \
|
php7-openssl@testing \
|
||||||
php7-ldap@testing \
|
php7-ldap@testing \
|
||||||
|
php7-ftp@testing \
|
||||||
php7-apcu@testing \
|
php7-apcu@testing \
|
||||||
|
php7-redis@testing \
|
||||||
&& mkdir /nextcloud && cd /tmp \
|
&& mkdir /nextcloud && cd /tmp \
|
||||||
&& wget -q https://download.nextcloud.com/server/daily/latest.tar.bz2 \
|
&& wget -q https://download.nextcloud.com/server/daily/latest.tar.bz2 \
|
||||||
&& tar xjf latest.tar.bz2 --strip 1 -C /nextcloud \
|
&& tar xjf latest.tar.bz2 --strip 1 -C /nextcloud \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user