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 images
docker tag <imageid> bchewy/repo_name:tagname
docker push bchewy/repo_name