You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2022. It is now read-only.
I have community-standard PIM with Docker and I want to install PHP-client inside this Docker as well. I found out that PHP-client requires ext-apcu. So I copied fpm Dockerfile to the root directory and added a line to install apcu. Then I let in docker-compose.yml, I let fpm container build from that Dockerfile. However, if I do this, fpm container exits immediately after $docker-compose up -d and I cannot access Akeneo website at localhost:8080.
I am not sure how to deal with Dockerfile. I am quite new to all these so I would really appreciate your help. Thank you in advance :)
The text was updated successfully, but these errors were encountered:
Can you please tell me which version of Akeneo are you using? Remember this repository only concerns Akeneo 3.2 and prior versions. Akeneo 4.0 comes with its own Docker images, with Dockerfiles present in the akeneo/pim-community-dev GitHub repository directly.
That being said, you saoi you copied the Dockerfile. Which Dockerfile are you talking about? And concerning apcu, it is enabled for both FPM and CLI by default, both in the images of this repository and in the one of akeno/pim-community-dev 4.0.
Finally, looking at the error you posted a screenshot of, I think you may have an issue with Apache not being able to talk with FPM. Something is wrong either in your FPM custom configuration, or in the Apache configuration. By default, httpd Docker images don't have mod_proxy enabled, and it is mandatory for Apache to talk to FPM. But here too, the default configurations provided with Akeneo PIM is already OK.
I have a question regarding fpm Dockerfile.
I have community-standard PIM with Docker and I want to install PHP-client inside this Docker as well. I found out that PHP-client requires ext-apcu. So I copied fpm Dockerfile to the root directory and added a line to install apcu. Then I let in docker-compose.yml, I let fpm container build from that Dockerfile. However, if I do this, fpm container exits immediately after
$docker-compose up -d
and I cannot access Akeneo website at localhost:8080.I am not sure how to deal with Dockerfile. I am quite new to all these so I would really appreciate your help. Thank you in advance :)
The text was updated successfully, but these errors were encountered: