This is the backend for the Airbnb react native mobile app clone which you can find here
docker images
- Lists all Docker imagesdocker container ls
- Lists all Docker containersdocker rmi <image id>
- Removes a Docker imagedocker container stop <container id>
- Stops a Docker containerdocker exec -it <container id> mongo
- Starts a mongodb shell in docker container if container is already runningdocker run -it -p 28000:27017 --name <container name> mongo:latest mongo
- Starts a mongodb shell in a docker container if container is not already runningdocker-compose up
- Runs the docker-compose.yml file and starts all containersdocker build .
- Builds a Docker image