Running the applicationCheckout code on /opt/pets-api on local computerBuild the containers: docker-compose buildCopy settings.py.bak to settings.py and add 'mongodb' as MONGODB_HOSTStart mongodb separately: docker-compose up -d dbStart the app: docker-compose up webTo start the application with pdb enabled: docker-compose run --service-ports webTo access mongodbFind the docker web container name and run: docker exec -it petsapi_db_1 mongoTo run testsFind the docker web container name and run: docker exec -it petsapi_web_1 python tests.py