-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
phpmyadmin:fpm docker #425
Comments
Hi, one of the real questions is why do you need the fpm variant if you use the apache2 one? |
If I'm not mistaken in the "ubuntu/apache2" module, PHP is not included, or do you recommend installing it there?
More than anything else I have the domain on Cloudflare with SSL (strick), so I need to connect the SSL certificate to the 443 connection, which I managed to do without problems on Apache2 |
PHP is included, you need nothing else than the Apache2 variant to have phpMyAdmin running. You should need:
About the HTTPS/SSL you will need to custom the image as we do not support this out of the box for now: #414 (will help you with a working example) |
ok, so I just install phpmyadmin through this command, and it connects itself to the apache2 container right? Can you confirm that the FPM version is fine?
|
The fpm version is probably not what you want, the best is to stick to the apache2 one because everything is included. The Docker command with "links" only creates a network between nodes. The container does not connect itself to anything until you go to the login page on your web browser. Can you share your docker compose file? |
HI,
I'm trying to install "phpmyadmin:fpm" I already have the two containers
Apache2: "apache2-container"
MySQL: "some-mysql"
How can I install phpmyadmin:fpm and link it to the two existing containers?
The text was updated successfully, but these errors were encountered: