Hello Team, Why is mysql container setup missing i...
# getting-started
b
Hello Team, Why is mysql container setup missing in the new docker compose file ?
m
Awhile ago we added some support for other datastores (maria and postgre). The default should still be mysql. docker-compose by default will include the
docker-compose.overrides.yml
file, which has the mysql definition
Does that help?
If something else is missing let me know. It was a large PR; something could've been shifted by accident
b
Seems like docker-compose.yml is default file. I couldn't find any reference to docker-compose.overrides.yml there. Could you please help me to understand how is it referring to the override file?
m
It is
docker-compose
magic.
By default, Compose reads two files, a 
docker-compose.yml
 and an optional 
docker-compose.override.yml
 file.
b
Thanks a lot John! Override file concept is new to me. Thanks again for sharing the documentation 🙂
m
Yeah, no problem! My PR was trying to cut down on the amount of docker files we had.
FYI if you're using docker for development locally we have a new set of images that are way faster / easier to use (*at least for backend; still a TODO for frontend)
b
Sure 👍