Some installations of Docker on Windows have issues with the MySQL containers starting properly.
The resolution is as follows.
Down the existing containers (docker-compose down
, adding -f
as appropriate)
Delete the shared/db
directory completely.
Edit the compose file you’re using and add
command: --innodb_use_native_aio=0
to the cms-db
service definition.
Then bring the containers up per the guide.