I need to increase the memory limit in the php-fpm container, i´ve been searching all over the web and i found someone with the same problem here. The thing is, after altering the memory limit in laravel.ini and php{version}.ini file i do this:
docker-compose build --no-cache php-fpm
and i get:
Building php-fpm
Step 1/154 : ARG LARADOCK_PHP_VERSION
Step 2/154 : ARG BASE_IMAGE_TAG_PREFIX=latest
Step 3/154 : FROM laradock/php-fpm:${BASE_IMAGE_TAG_PREFIX}-${LARADOCK_PHP_VERSION}
ERROR: Service 'php-fpm' failed to build: invalid reference format
So whenever i check if the memory limit has been refresh, i still get:
sudo docker container exec laradock_php-fpm_1 php -r "echo ini_get('memory_limit').PHP_EOL;"
256M
I have tried so many things and i don´t understand where the problem is, so i was hopping someone could help me out
Regards