forked from nextcloud/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Run update.sh Signed-off-by: tilosp-bot <[email protected]> * Run update.sh Signed-off-by: tilosp-bot <[email protected]> * Run update.sh Signed-off-by: tilosp-bot <[email protected]> * Adds ability to configure S3 object stores via environment variables Signed-off-by: Adam Jenkins <[email protected]> * Updates objectstore autoconfiguration to match server defaults - usepath defaults to false (and is deprecated by AWS) - autocreate is not used/necessary by the objectstorage code (always tries to create) Signed-off-by: Stephen Cuppett <[email protected]> * Dropping NULL check Co-authored-by: tilosp-bot <[email protected]> Co-authored-by: Tilo Spannagel <[email protected]> Co-authored-by: Adam Jenkins <[email protected]> Signed-off-by: Adam Jenkins <[email protected]>
- Loading branch information
1 parent
71fb7c3
commit ce1b0c2
Showing
126 changed files
with
5,316 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
if (getenv('OBJECTSTORE_S3_BUCKET')) { | ||
$use_ssl = getenv('OBJECTSTORE_S3_SSL'); | ||
$use_path = getenv('OBJECTSTORE_S3_USEPATH_STYLE'); | ||
$CONFIG = array( | ||
'objectstore' => array( | ||
'class' => '\OC\Files\ObjectStore\S3', | ||
'arguments' => array( | ||
'bucket' => getenv('OBJECTSTORE_S3_BUCKET'), | ||
'key' => getenv('OBJECTSTORE_S3_KEY') ?: '', | ||
'secret' => getenv('OBJECTSTORE_S3_SECRET') ?: '', | ||
'region' => getenv('OBJECTSTORE_S3_REGION') ?: '', | ||
'hostname' => getenv('OBJECTSTORE_S3_HOST') ?: '', | ||
'port' => getenv('OBJECTSTORE_S3_PORT') ?: '', | ||
'use_ssl' => (strtolower($use_ssl) === 'false' || $use_ssl == false) ? false : true, | ||
// required for some non Amazon S3 implementations | ||
'use_path_style' => $use_path == true && strtolower($use_path) !== 'false' | ||
) | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template | ||
FROM php:7.3-apache-buster | ||
|
||
# entrypoint.sh and cron.sh dependencies | ||
RUN set -ex; \ | ||
\ | ||
apt-get update; \ | ||
apt-get install -y --no-install-recommends \ | ||
rsync \ | ||
bzip2 \ | ||
busybox-static \ | ||
; \ | ||
rm -rf /var/lib/apt/lists/*; \ | ||
\ | ||
mkdir -p /var/spool/cron/crontabs; \ | ||
echo '*/5 * * * * php -f /var/www/html/cron.php' > /var/spool/cron/crontabs/www-data | ||
|
||
# install the PHP extensions we need | ||
# see https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html | ||
RUN set -ex; \ | ||
\ | ||
savedAptMark="$(apt-mark showmanual)"; \ | ||
\ | ||
apt-get update; \ | ||
apt-get install -y --no-install-recommends \ | ||
libcurl4-openssl-dev \ | ||
libevent-dev \ | ||
libfreetype6-dev \ | ||
libicu-dev \ | ||
libjpeg-dev \ | ||
libldap2-dev \ | ||
libmcrypt-dev \ | ||
libmemcached-dev \ | ||
libpng-dev \ | ||
libpq-dev \ | ||
libxml2-dev \ | ||
libmagickwand-dev \ | ||
libzip-dev \ | ||
libwebp-dev \ | ||
libgmp-dev \ | ||
; \ | ||
\ | ||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ | ||
if [ ! -e /usr/include/gmp.h ]; then ln -s /usr/include/$debMultiarch/gmp.h /usr/include/gmp.h; fi;\ | ||
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr --with-webp-dir=/usr; \ | ||
docker-php-ext-configure gmp --with-gmp="/usr/include/$debMultiarch"; \ | ||
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \ | ||
docker-php-ext-install -j "$(nproc)" \ | ||
exif \ | ||
gd \ | ||
intl \ | ||
ldap \ | ||
opcache \ | ||
pcntl \ | ||
pdo_mysql \ | ||
pdo_pgsql \ | ||
zip \ | ||
gmp \ | ||
; \ | ||
\ | ||
# pecl will claim success even if one install fails, so we need to perform each install separately | ||
pecl install APCu-5.1.18; \ | ||
pecl install memcached-3.1.5; \ | ||
pecl install redis-4.3.0; \ | ||
pecl install imagick-3.4.4; \ | ||
\ | ||
docker-php-ext-enable \ | ||
apcu \ | ||
memcached \ | ||
redis \ | ||
imagick \ | ||
; \ | ||
\ | ||
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies | ||
apt-mark auto '.*' > /dev/null; \ | ||
apt-mark manual $savedAptMark; \ | ||
ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so \ | ||
| awk '/=>/ { print $3 }' \ | ||
| sort -u \ | ||
| xargs -r dpkg-query -S \ | ||
| cut -d: -f1 \ | ||
| sort -u \ | ||
| xargs -rt apt-mark manual; \ | ||
\ | ||
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# set recommended PHP.ini settings | ||
# see https://docs.nextcloud.com/server/12/admin_manual/configuration_server/server_tuning.html#enable-php-opcache | ||
RUN { \ | ||
echo 'opcache.enable=1'; \ | ||
echo 'opcache.interned_strings_buffer=8'; \ | ||
echo 'opcache.max_accelerated_files=10000'; \ | ||
echo 'opcache.memory_consumption=128'; \ | ||
echo 'opcache.save_comments=1'; \ | ||
echo 'opcache.revalidate_freq=1'; \ | ||
} > /usr/local/etc/php/conf.d/opcache-recommended.ini; \ | ||
\ | ||
echo 'apc.enable_cli=1' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini; \ | ||
\ | ||
echo 'memory_limit=512M' > /usr/local/etc/php/conf.d/memory-limit.ini; \ | ||
\ | ||
mkdir /var/www/data; \ | ||
chown -R www-data:root /var/www; \ | ||
chmod -R g=u /var/www | ||
|
||
VOLUME /var/www/html | ||
|
||
RUN a2enmod headers rewrite remoteip ;\ | ||
{\ | ||
echo RemoteIPHeader X-Real-IP ;\ | ||
echo RemoteIPTrustedProxy 10.0.0.0/8 ;\ | ||
echo RemoteIPTrustedProxy 172.16.0.0/12 ;\ | ||
echo RemoteIPTrustedProxy 192.168.0.0/16 ;\ | ||
} > /etc/apache2/conf-available/remoteip.conf;\ | ||
a2enconf remoteip | ||
|
||
ENV NEXTCLOUD_VERSION 17.0.9RC2 | ||
|
||
RUN set -ex; \ | ||
fetchDeps=" \ | ||
gnupg \ | ||
dirmngr \ | ||
"; \ | ||
apt-get update; \ | ||
apt-get install -y --no-install-recommends $fetchDeps; \ | ||
\ | ||
curl -fsSL -o nextcloud.tar.bz2 \ | ||
"https://download.nextcloud.com/server/prereleases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ | ||
curl -fsSL -o nextcloud.tar.bz2.asc \ | ||
"https://download.nextcloud.com/server/prereleases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2.asc"; \ | ||
export GNUPGHOME="$(mktemp -d)"; \ | ||
# gpg key from https://nextcloud.com/nextcloud.asc | ||
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \ | ||
gpg --batch --verify nextcloud.tar.bz2.asc nextcloud.tar.bz2; \ | ||
tar -xjf nextcloud.tar.bz2 -C /usr/src/; \ | ||
gpgconf --kill all; \ | ||
rm nextcloud.tar.bz2.asc nextcloud.tar.bz2; \ | ||
rm -rf "$GNUPGHOME" /usr/src/nextcloud/updater; \ | ||
mkdir -p /usr/src/nextcloud/data; \ | ||
mkdir -p /usr/src/nextcloud/custom_apps; \ | ||
chmod +x /usr/src/nextcloud/occ; \ | ||
\ | ||
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $fetchDeps; \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY *.sh upgrade.exclude / | ||
COPY config/* /usr/src/nextcloud/config/ | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
CMD ["apache2-foreground"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
$CONFIG = array ( | ||
'htaccess.RewriteBase' => '/', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
$CONFIG = array ( | ||
'memcache.local' => '\OC\Memcache\APCu', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
$CONFIG = array ( | ||
"apps_paths" => array ( | ||
0 => array ( | ||
"path" => OC::$SERVERROOT."/apps", | ||
"url" => "/apps", | ||
"writable" => false, | ||
), | ||
1 => array ( | ||
"path" => OC::$SERVERROOT."/custom_apps", | ||
"url" => "/custom_apps", | ||
"writable" => true, | ||
), | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
$autoconfig_enabled = false; | ||
|
||
if (getenv('SQLITE_DATABASE')) { | ||
$AUTOCONFIG["dbtype"] = "sqlite"; | ||
$AUTOCONFIG["dbname"] = getenv('SQLITE_DATABASE'); | ||
$autoconfig_enabled = true; | ||
} elseif (getenv('MYSQL_DATABASE') && getenv('MYSQL_USER') && getenv('MYSQL_PASSWORD') && getenv('MYSQL_HOST')) { | ||
$AUTOCONFIG["dbtype"] = "mysql"; | ||
$AUTOCONFIG["dbname"] = getenv('MYSQL_DATABASE'); | ||
$AUTOCONFIG["dbuser"] = getenv('MYSQL_USER'); | ||
$AUTOCONFIG["dbpass"] = getenv('MYSQL_PASSWORD'); | ||
$AUTOCONFIG["dbhost"] = getenv('MYSQL_HOST'); | ||
$autoconfig_enabled = true; | ||
} elseif (getenv('POSTGRES_DB') && getenv('POSTGRES_USER') && getenv('POSTGRES_PASSWORD') && getenv('POSTGRES_HOST')) { | ||
$AUTOCONFIG["dbtype"] = "pgsql"; | ||
$AUTOCONFIG["dbname"] = getenv('POSTGRES_DB'); | ||
$AUTOCONFIG["dbuser"] = getenv('POSTGRES_USER'); | ||
$AUTOCONFIG["dbpass"] = getenv('POSTGRES_PASSWORD'); | ||
$AUTOCONFIG["dbhost"] = getenv('POSTGRES_HOST'); | ||
$autoconfig_enabled = true; | ||
} | ||
|
||
if ($autoconfig_enabled) { | ||
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
if (getenv('REDIS_HOST')) { | ||
$CONFIG = array ( | ||
'memcache.distributed' => '\OC\Memcache\Redis', | ||
'memcache.locking' => '\OC\Memcache\Redis', | ||
'redis' => array( | ||
'host' => getenv('REDIS_HOST'), | ||
'password' => getenv('REDIS_HOST_PASSWORD'), | ||
), | ||
); | ||
|
||
if (getenv('REDIS_HOST_PORT') !== false) { | ||
$CONFIG['redis']['port'] = (int) getenv('REDIS_HOST_PORT'); | ||
} elseif (getenv('REDIS_HOST')[0] != '/') { | ||
$CONFIG['redis']['port'] = 6379; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
$overwriteHost = getenv('OVERWRITEHOST'); | ||
if ($overwriteHost) { | ||
$CONFIG['overwritehost'] = $overwriteHost; | ||
} | ||
|
||
$overwriteProtocol = getenv('OVERWRITEPROTOCOL'); | ||
if ($overwriteProtocol) { | ||
$CONFIG['overwriteprotocol'] = $overwriteProtocol; | ||
} | ||
|
||
$overwriteWebRoot = getenv('OVERWRITEWEBROOT'); | ||
if ($overwriteWebRoot) { | ||
$CONFIG['overwritewebroot'] = $overwriteWebRoot; | ||
} | ||
|
||
$overwriteCondAddr = getenv('OVERWRITECONDADDR'); | ||
if ($overwriteCondAddr) { | ||
$CONFIG['overwritecondaddr'] = $overwriteCondAddr; | ||
} | ||
|
||
$trustedProxies = getenv('TRUSTED_PROXIES'); | ||
if ($trustedProxies) { | ||
$CONFIG['trusted_proxies'] = array_filter(array_map('trim', explode(' ', $trustedProxies))); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
if (getenv('SMTP_HOST') && getenv('MAIL_FROM_ADDRESS') && getenv('MAIL_DOMAIN')) { | ||
$CONFIG = array ( | ||
'mail_smtpmode' => 'smtp', | ||
'mail_smtphost' => getenv('SMTP_HOST'), | ||
'mail_smtpport' => getenv('SMTP_PORT') ?: (getenv('SMTP_SECURE') ? 465 : 25), | ||
'mail_smtpsecure' => getenv('SMTP_SECURE') ?: '', | ||
'mail_smtpauth' => getenv('SMTP_NAME') && getenv('SMTP_PASSWORD'), | ||
'mail_smtpauthtype' => getenv('SMTP_AUTHTYPE') ?: 'LOGIN', | ||
'mail_smtpname' => getenv('SMTP_NAME') ?: '', | ||
'mail_smtppassword' => getenv('SMTP_PASSWORD') ?: '', | ||
'mail_from_address' => getenv('MAIL_FROM_ADDRESS'), | ||
'mail_domain' => getenv('MAIL_DOMAIN'), | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
set -eu | ||
|
||
exec busybox crond -f -l 0 -L /dev/stdout |
Oops, something went wrong.