Docker: Difference between revisions

From DWIKI
mNo edit summary
 
(11 intermediate revisions by the same user not shown)
Line 6: Line 6:
*[https://docs.docker.com/compose Docker-compose]
*[https://docs.docker.com/compose Docker-compose]
*https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-centos-7
*https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-centos-7
*[https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes Removing images, containers and volumes]
*[https://training.play-with-docker.com/beginner-linux/ Docker for beginners]
*[https://training.play-with-docker.com/beginner-linux/ Docker for beginners]
*[https://runnable.com/docker/basic-docker-networking Docker networking]
*[https://docs.docker.com/config/pruning/ Docker pruning]


=HOWTO=


=FAQ=
==List running containers==
==List running containers==
  docker ps
  docker ps


==List containers==
docker ps -a
==Show disk usage==
docker system df
outputs:
TYPE            TOTAL    ACTIVE    SIZE      RECLAIMABLE
Images          27        10        11.35GB  5.72GB (50%)
Containers      12        12        123.6MB  0B (0%)
Local Volumes  0        0        0B        0B
Build Cache    0        0        0B        0B
===RECLAIMABLE===
Is what you get back when running
docker prune -a
==List images==
docker images
==Get shell in running container==
==Get shell in running container==
To get image name
To get image name
Line 18: Line 38:
then
then
  docker exec -it <image-id> bash
  docker exec -it <image-id> bash
==Network==
docker network ls
docker network inspect
==image has dependent child images==
docker inspect --format='{{.Id}} {{.Parent}}' $(docker images --filter since=<image_id> -q)
==Dangling images==
===list dangling images===
docker images -f dangling=true
===Remove dangling image===
docker rmi image-id
===Remove all dangling images===
docker rmi $(docker images -f dangling=true -q)
==image is being used by stopped container xyz==
docker rm xyz
and try again


==Backups==
==Backups==
*https://linuxconfig.org/docker-container-backup-and-recovery
*https://linuxconfig.org/docker-container-backup-and-recovery
*[https://bobcares.com/blog/docker-backup/ Docker - Easy backup & restore]
*[https://bobcares.com/blog/docker-backup/ Docker - Easy backup & restore]
=FAQ=
==The container name "/mycontainer" is already in use by container==
It already exists, so use
docker start
instead of
docker run
==Compose==
===docker: 'compose' is not a docker command.===
apt install docker-compose
===unknown flag: --detach===
apt install docker-compose-v2

Latest revision as of 16:23, 8 April 2024

Links


Docs

HOWTO

List running containers

docker ps

List containers

docker ps -a

Show disk usage

docker system df

outputs:

TYPE            TOTAL     ACTIVE    SIZE      RECLAIMABLE
Images          27        10        11.35GB   5.72GB (50%)
Containers      12        12        123.6MB   0B (0%)
Local Volumes   0         0         0B        0B
Build Cache     0         0         0B        0B

RECLAIMABLE

Is what you get back when running

docker prune -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)

Dangling images

list dangling images

docker images -f dangling=true

Remove dangling image

docker rmi image-id

Remove all dangling images

docker rmi $(docker images -f dangling=true -q)

image is being used by stopped container xyz

docker rm xyz

and try again


Backups

FAQ

The container name "/mycontainer" is already in use by container

It already exists, so use

docker start

instead of

docker run

Compose

docker: 'compose' is not a docker command.

apt install docker-compose

unknown flag: --detach

apt install docker-compose-v2