mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-24 18:00:18 -06:00
22 lines
644 B
Docker
22 lines
644 B
Docker
FROM jc5x/firefly-iii-base-image:latest
|
|
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
|
|
WORKDIR $FIREFLY_PATH
|
|
ADD . $FIREFLY_PATH
|
|
|
|
# Ensure correct app directory permission, then `composer install`
|
|
RUN chown -R www-data:www-data /var/www && \
|
|
chmod -R 775 $FIREFLY_PATH/storage && \
|
|
composer install --prefer-dist --no-dev --no-scripts --no-suggest
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Run entrypoint thing
|
|
ENTRYPOINT [".deploy/docker/entrypoint.sh"]
|