docker ps -a# shows all containers and their statuses, stopped, up for x hours, etc!docker stop $(docker ps -a -q)# Stops all running containers.docker build .# Builds current dockerfile in directory into a docker imagedocker-compose up -d --build# builds from docker-compose.yml, and runs as daemon.
docker imagesdocker tag <imageid> bchewy/repo_name:tagnamedocker push bchewy/repo_name