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
I use the following file to run phpmyadmin, for ENV configuration apache can run but fpm can't,
Dockerfile
FROM nginx:alpine as nginx
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=pma /var/www/html /var/www/html
FROM phpmyadmin:fpm as pma
#RUN mv /var/www/html/config.sample.inc.php /var/www/html/config.inc.php
I moved the issue here, it's a bit complicated because you would need to mount a volume between fpm and nginx. But it would not work because it is a known issue that we are trying to fix.
That said PMA_HOSTS on the nginx node seems useless
I use the following file to run phpmyadmin, for ENV configuration apache can run but fpm can't,
Dockerfile
docker-compose.yml
nginx.conf
apache result [http://localhost:8088/]
fpm result [http://localhost:9088/]
The text was updated successfully, but these errors were encountered: