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