I want to be able to develop the same website from different computers. I've created github repository and Docker enviroment (using this tutorial: https://www.vultr.com/docs/deploy-a-php-application-using-docker-compose ).
I've got the git repository on both workstations to share the project and Docker files. I've built images ("docker build -t vultr-php php/"; "docker build -t vultr-nginx nginx/") and run composer file ("docker-compose up -d") on both computers. I'm new to Docker so I've only followed this vultr.com tutorial.
Enviroment is working but I'd like to share the database in a way that when I'm done working on a laptop and start working on a desktop then I've got the same database. Is there a way to do this with docker/git?