Docker: Could not find any MySQL database drivers. (MySQLi or PDO required.)
问题 I'm trying to customize a default PHP image to develop a wordpress plugin locally This the docker-compose.yml section about wordpress service wordpress: container_name: wordpress build: actual-wordpress #image: php:5.5-apache volumes: - ./actual-wordpress/www/:/var/www/html/ - ./actual-wordpress/wp-config-local.php:/var/www/html/wp-config.php - ./actual-wordpress/srtool/:/var/www/html/srtool/ depends_on: - db ports: - 8000:80 restart: always And this is the 'actual-wordpress' dockerfile being