Compare commits

...

4 Commits

Author SHA1 Message Date
David Bomba
a184cf2844 Merge pull request #213 from turbo124/master
Add Git / link storage
2020-11-28 07:26:12 +11:00
David Bomba
94e8be57e5 Merge branch 'master' of https://github.com/turbo124/dockerfiles 2020-11-28 07:25:07 +11:00
David Bomba
385a434833 Add git to container to allow auto-updating from container 2020-11-28 07:24:59 +11:00
David Bomba
9ddeda4c32 storage link 2020-11-25 20:33:23 +11:00

View File

@@ -8,6 +8,7 @@ RUN set -eux; \
apk add --no-cache \
curl \
mysql-client \
git \
libarchive-tools; \
mkdir -p /var/www/app
@@ -118,5 +119,7 @@ RUN composer install --no-dev --no-suggest --no-progress --quiet
ENV APP_ENV production
ENV LOG errorlog
RUN php artisan storage:link
ENTRYPOINT ["docker-entrypoint"]
CMD ["php-fpm"]