Docker with separate PHP and PHPMyAdmin images – how to access phpmyadmin using http://localhost/phpmyadmin
I have the following docker compose file: version: "3.9" services: php: image: phpimage ports: - 80:80 phpmyadmin: image: phpmyadminimage ports: - "8080:80" environment: - PMA_HOST=mysql mysql: image: mysqlimage command: mysqld --sql_mode="NO_ENGINE_SUBSTITUTION" And everything works fine. The one thing that annoys…