mirror of
https://github.com/friendica/docker
synced 2024-12-29 00:25:44 +01:00
841a0b438b
- Use APCu cache as default caching mechanism - Add explicit redis environment variables for redis lock-support - Add a lot of environment variables, which aren't part of admin-page - Add possibility to disable URL & E-Mail validation (for demo-page) - Dynamically copy /config/ content without overwriting existing one Add opcache support for performance reason Add multi-core support for php extensions install Bump redis version to 5.0.1 (last stable) Exclude /log/ directory during sync (to avoid deleting logs)
125 lines
3.1 KiB
Text
125 lines
3.1 KiB
Text
FROM php:%%PHP_VERSION%%-%%VARIANT%%
|
|
LABEL maintainer="Philipp Holzer <admin@philipp.info>"
|
|
|
|
# entrypoint.sh and cron.sh dependencies
|
|
RUN set -ex; \
|
|
apk add --no-cache \
|
|
rsync \
|
|
git \
|
|
# For mail() support
|
|
ssmtp;
|
|
|
|
# install the PHP extensions we need
|
|
# see https://friendi.ca/resources/requirements/
|
|
RUN set -ex; \
|
|
\
|
|
apk add -U --no-cache --virtual .build-deps \
|
|
libxml2-dev \
|
|
mysql-client \
|
|
bash \
|
|
autoconf \
|
|
g++ \
|
|
make \
|
|
openssl \
|
|
openssl-dev \
|
|
libpng \
|
|
libpng-dev \
|
|
libjpeg-turbo-dev \
|
|
imagemagick-dev \
|
|
imagemagick \
|
|
libtool \
|
|
libmemcached-dev \
|
|
cyrus-sasl-dev \
|
|
freetype \
|
|
libpng \
|
|
libjpeg-turbo-dev \
|
|
freetype-dev \
|
|
librsvg \
|
|
libcurl \
|
|
curl \
|
|
curl-dev \
|
|
rsync \
|
|
bzip2 \
|
|
pcre-dev \
|
|
libzip-dev \
|
|
; \
|
|
\
|
|
docker-php-ext-configure gd \
|
|
--with-gd \
|
|
--with-freetype-dir=/usr/include/ \
|
|
--with-png-dir=/usr/include/ \
|
|
--with-jpeg-dir=/usr/include/ \
|
|
; \
|
|
\
|
|
docker-php-ext-install -j "$(nproc)" \
|
|
curl \
|
|
pdo \
|
|
pdo_mysql \
|
|
xml \
|
|
gd \
|
|
zip \
|
|
opcache \
|
|
mbstring \
|
|
posix \
|
|
ctype \
|
|
json \
|
|
iconv \
|
|
; \
|
|
\
|
|
# pecl will claim success even if one install fails, so we need to perform each install separately
|
|
pecl install APCu-%%APCU_VERSION%%; \
|
|
pecl install memcached-%%MEMCACHED_VERSION%%; \
|
|
pecl install redis-%%REDIS_VERSION%%; \
|
|
pecl install imagick-%%IMAGICK_VERSION%%; \
|
|
\
|
|
docker-php-ext-enable \
|
|
apcu \
|
|
memcached \
|
|
redis \
|
|
imagick \
|
|
; \
|
|
\
|
|
runDeps="$( \
|
|
scanelf --needed --nobanner --format '%n#p' --recursive /usr/local/lib/php/extensions \
|
|
| tr ',' '\n' \
|
|
| sort -u \
|
|
| awk 'system("[ -e /usr/local/lib" $1 " ]") == 0 { next } { print "so:" $1 }' \
|
|
)"; \
|
|
apk add --virtual .friendica-phpext-rundeps $runDeps; \
|
|
apk del .build-deps;
|
|
|
|
# set recommended PHP.ini settings
|
|
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.revalidte_freq=1'; \
|
|
} > /usr/local/etc/php/conf.d/opcache-recommended.ini; \
|
|
\
|
|
{ \
|
|
echo sendmail_path = "/usr/sbin/sendmail -t -i"; \
|
|
} > /usr/local/etc/php/conf.d/sendmail.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
|
|
%%VARIANT_EXTRAS%%
|
|
|
|
ENV FRIENDICA_VERSION %%VERSION%%
|
|
ENV FRIENDICA_ADDONS %%VERSION%%
|
|
%%INSTALL_EXTRAS%%
|
|
|
|
COPY *.sh upgrade.exclude /
|
|
COPY config/* /usr/src/friendica/config/
|
|
RUN chmod +x /*.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["%%CMD%%"]
|