I am using Wordpress and docker container. The problem is that I updated the wp-config.php file but everything looks the same. I have something like this:
CONTA
The trick:
wp: image: wordpress:latest ports: - 80:80 volumes: - ./wp-content:/var/www/html/wp-content - ./wp-config.php:/usr/src/wordpress/wp-config-sample.php
When local wp-config.php changes you should delete /var/www/html/wp-config.php from container, docker will copy it again... but it works!