Remove any stopped containers and all unused images (not just dangling images):
$ docker system prune -a
Stop all docker processes:
$ docker stop $(docker ps -a -q)
SSH to docker instance:
$ docker exec -it {instance_id} bash
Show all currently running docker containers:
$ docker ps
Up and build docker-compose:
$ docker-compose up --build