// PWD: ./strapi-docker
$ docker-compose logs --tail=all -f | grep <container_name>
// PWD: ./strapi-docker
$ docker-compose up -d
// PWD: ./strapi-docker
$ docker-compose start
$ docker exec -it <container_name> /bin/bash
$ ps -ef
This will delete all containers, images and volumes related to the docker-compose.yml
// PWD: ./strapi-docker
$ docker-compose down --rmi all -v
This will only stop the running containers without destroying anything
// PWD: ./strapi-docker
$ docker-compose stop
You can use a GUI of follow the commands below
// PWD: ./strapi-docker
$ docker exec -it <container_name> /bin/bash
$ mongo strapi -u strapi -p --authenticationDatabase admin
$ show colelctions (example of command for mongo, please read documentation)