mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix Docker files.
This commit is contained in:
parent
a6af263b50
commit
4cd824f3b7
@ -1,33 +1,4 @@
|
|||||||
FROM arm64v8/php:7.3-apache-stretch
|
FROM jc5x/firefly-iii-base-image:latest
|
||||||
ENV COMPOSER_ALLOW_SUPERUSER=1
|
|
||||||
|
|
||||||
# Install stuff Firefly III runs with & depends on: php extensions, locales, dev headers and composer
|
|
||||||
RUN apt-get update && apt-get install -y locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Script to run common extensions
|
|
||||||
ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/
|
|
||||||
|
|
||||||
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \
|
|
||||||
install-php-extensions --cleanup bcmath ldap gd pdo_pgsql pdo_sqlite pdo_mysql intl opcache memcached
|
|
||||||
|
|
||||||
# common config
|
|
||||||
RUN a2enmod rewrite && a2enmod ssl && \
|
|
||||||
echo "el_GR.UTF-8 UTF-8\nhu_HU.UTF-8 UTF-8\nro_RO.UTF-8 UTF-8\nnb_NO.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8\ncs_CZ.UTF-8 UTF-8\nen_US.UTF-8 UTF-8\nes_ES.UTF-8 UTF-8\nfr_FR.UTF-8 UTF-8\nid_ID.UTF-8 UTF-8\nit_IT.UTF-8 UTF-8\nnl_NL.UTF-8 UTF-8\npl_PL.UTF-8 UTF-8\npt_BR.UTF-8 UTF-8\nru_RU.UTF-8 UTF-8\ntr_TR.UTF-8 UTF-8\nzh_TW.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n\n" > /etc/locale.gen && \
|
|
||||||
locale-gen && \
|
|
||||||
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && \
|
|
||||||
composer global require hirak/prestissimo --no-plugins --no-scripts && \
|
|
||||||
cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini && \
|
|
||||||
sed -i 's/max_execution_time = 30/max_execution_time = 600/' /usr/local/etc/php/php.ini && \
|
|
||||||
sed -i 's/memory_limit = 128M/memory_limit = 512M/' /usr/local/etc/php/php.ini
|
|
||||||
|
|
||||||
# copy ca certs to correct location
|
|
||||||
COPY ./cacert.pem /usr/local/ssl/cert.pem
|
|
||||||
|
|
||||||
# copy Apache config to correct spot.
|
|
||||||
COPY ./apache2.conf /etc/apache2/apache2.conf
|
|
||||||
|
|
||||||
# Enable default site (Firefly III)
|
|
||||||
COPY ./apache-firefly-iii.conf /etc/apache2/sites-available/000-default.conf
|
|
||||||
|
|
||||||
# See also: https://github.com/JC5/firefly-iii-base-image
|
# See also: https://github.com/JC5/firefly-iii-base-image
|
||||||
|
|
||||||
|
@ -1,24 +1,41 @@
|
|||||||
FROM arm32v7/php:7.2-apache-stretch
|
FROM arm64v8/php:7.3-apache-stretch
|
||||||
ARG ARCH
|
ENV COMPOSER_ALLOW_SUPERUSER=1
|
||||||
COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
|
||||||
ENV FIREFLY_PATH=/var/www/firefly-iii COMPOSER_ALLOW_SUPERUSER=1
|
|
||||||
LABEL version="1.5" maintainer="thegrumpydictator@gmail.com"
|
|
||||||
|
|
||||||
# Create volumes
|
|
||||||
VOLUME $FIREFLY_PATH/storage/export $FIREFLY_PATH/storage/upload
|
|
||||||
|
|
||||||
# Install stuff Firefly III runs with & depends on: php extensions, locales, dev headers and composer
|
# Install stuff Firefly III runs with & depends on: php extensions, locales, dev headers and composer
|
||||||
RUN apt-get update && apt-get install -y locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y locales unzip && apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Script to run common extensions
|
||||||
ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/
|
ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/
|
||||||
|
|
||||||
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \
|
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \
|
||||||
install-php-extensions --cleanup bcmath ldap gd pdo_pgsql pdo_sqlite pdo_mysql intl opcache memcached
|
install-php-extensions --cleanup bcmath ldap gd pdo_pgsql pdo_sqlite pdo_mysql intl opcache memcached
|
||||||
|
|
||||||
RUN a2enmod rewrite && a2enmod ssl
|
# common config
|
||||||
RUN echo "hu_HU.UTF-8 UTF-8\nro_RO.UTF-8 UTF-8\nnb_NO.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8\ncs_CZ.UTF-8 UTF-8\nen_US.UTF-8 UTF-8\nes_ES.UTF-8 UTF-8\nfr_FR.UTF-8 UTF-8\nid_ID.UTF-8 UTF-8\nit_IT.UTF-8 UTF-8\nnl_NL.UTF-8 UTF-8\npl_PL.UTF-8 UTF-8\npt_BR.UTF-8 UTF-8\nru_RU.UTF-8 UTF-8\ntr_TR.UTF-8 UTF-8\nzh_TW.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n\n" > /etc/locale.gen
|
RUN a2enmod rewrite && a2enmod ssl && \
|
||||||
RUN locale-gen
|
echo "el_GR.UTF-8 UTF-8\nhu_HU.UTF-8 UTF-8\nro_RO.UTF-8 UTF-8\nnb_NO.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8\ncs_CZ.UTF-8 UTF-8\nen_US.UTF-8 UTF-8\nes_ES.UTF-8 UTF-8\nfr_FR.UTF-8 UTF-8\nid_ID.UTF-8 UTF-8\nit_IT.UTF-8 UTF-8\nnl_NL.UTF-8 UTF-8\npl_PL.UTF-8 UTF-8\npt_BR.UTF-8 UTF-8\nru_RU.UTF-8 UTF-8\ntr_TR.UTF-8 UTF-8\nzh_TW.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n\n" > /etc/locale.gen && \
|
||||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
locale-gen && \
|
||||||
|
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && \
|
||||||
|
composer global require hirak/prestissimo --no-plugins --no-scripts && \
|
||||||
|
cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini && \
|
||||||
|
sed -i 's/max_execution_time = 30/max_execution_time = 600/' /usr/local/etc/php/php.ini && \
|
||||||
|
sed -i 's/memory_limit = 128M/memory_limit = 512M/' /usr/local/etc/php/php.ini
|
||||||
|
|
||||||
|
# copy ca certs to correct location
|
||||||
|
COPY ./cacert.pem /usr/local/ssl/cert.pem
|
||||||
|
|
||||||
|
# copy Apache config to correct spot.
|
||||||
|
COPY ./apache2.conf /etc/apache2/apache2.conf
|
||||||
|
|
||||||
|
# Enable default site (Firefly III)
|
||||||
|
COPY ./apache-firefly-iii.conf /etc/apache2/sites-available/000-default.conf
|
||||||
|
|
||||||
|
# See also: https://github.com/JC5/firefly-iii-base-image
|
||||||
|
|
||||||
|
ENV FIREFLY_PATH=/var/www/firefly-iii COMPOSER_ALLOW_SUPERUSER=1
|
||||||
|
LABEL version="1.5" maintainer="thegrumpydictator@gmail.com"
|
||||||
|
|
||||||
|
# Create volumes
|
||||||
|
VOLUME $FIREFLY_PATH/storage/export $FIREFLY_PATH/storage/upload
|
||||||
|
|
||||||
# Copy in Firefly III source
|
# Copy in Firefly III source
|
||||||
WORKDIR $FIREFLY_PATH
|
WORKDIR $FIREFLY_PATH
|
||||||
@ -29,15 +46,6 @@ RUN chown -R www-data:www-data /var/www && \
|
|||||||
chmod -R 775 $FIREFLY_PATH/storage && \
|
chmod -R 775 $FIREFLY_PATH/storage && \
|
||||||
composer install --prefer-dist --no-dev --no-scripts --no-suggest
|
composer install --prefer-dist --no-dev --no-scripts --no-suggest
|
||||||
|
|
||||||
# copy ca certs to correct location
|
|
||||||
COPY ./.deploy/docker/cacert.pem /usr/local/ssl/cert.pem
|
|
||||||
|
|
||||||
# copy Apache config to correct spot.
|
|
||||||
COPY ./.deploy/docker/apache2.conf /etc/apache2/apache2.conf
|
|
||||||
|
|
||||||
# Enable default site (Firefly III)
|
|
||||||
COPY ./.deploy/docker/apache-firefly.conf /etc/apache2/sites-available/000-default.conf
|
|
||||||
|
|
||||||
# Expose port 80
|
# Expose port 80
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user