Display system-wide information regarding the Docker installation
docker info
This is useful when k8s
can't pull image psql
to the pods properly
docker run --name test_psql_2 -e POSTGRES_PASSWORD=password -p 5436:5432 -it postgres:14
# show all docker images docker image ls # delete docker images docker image rm image_id -f
List all containers
docker container ls
Show all running containers
docker ps
Start running the containers
docker-compose up
OR
docker-compose up --detach
# stop running the containers docker-compose down # Delete no longer needed containers that are stopped docker container prune
# deleting old images not being used docker rmi -f $(docker images -a -q) # docker stop all images docker stop $(docker ps -q) # delete colima colima delete