Docker

From DWIKI
Revision as of 17:21, 9 January 2023 by Tony (talk | contribs)

Links


Docs

HOWTO

List running containers

docker ps

List containers

docker ps -a


List images

docker images

Get shell in running container

To get image name

docker ps

then

docker exec -it <image-id> bash

Network

docker network ls
docker network inspect


image has dependent child images

docker inspect --format='Template:.Id Template:.Parent' $(docker images --filter since=<image_id> -q)

list dangling images

docker images -f dangling=true

Remove dangling image

docker rmi image-id

image is being used by stopped container xyz

docker rm xyz

and try again


Backups

FAQ