adapt dev local env
This commit is contained in:
12
docker_build/php/Dockerfile
Normal file
12
docker_build/php/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM phpdockerio/php72-fpm:latest
|
||||
WORKDIR "/var/www/app"
|
||||
|
||||
# Install selected extensions and other stuff
|
||||
RUN apt-get update \
|
||||
&& apt-get -y --no-install-recommends install php7.2-mysql \
|
||||
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
|
||||
|
||||
# Install git
|
||||
RUN apt-get update \
|
||||
&& apt-get -y install git \
|
||||
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
|
2
docker_build/php/php-ini-overrides.ini
Normal file
2
docker_build/php/php-ini-overrides.ini
Normal file
@@ -0,0 +1,2 @@
|
||||
upload_max_filesize = 100M
|
||||
post_max_size = 108M
|
Reference in New Issue
Block a user