Please enable JavaScript.
Coggle requires JavaScript to display documents.
Docker, SIGTERM - Coggle Diagram
Docker
Engine
daemon
containerd
runc
plugins
shim
libnetwork
Image
Tag
Layer
Distribution hash
Dangling: <none>:<none>
Digest (hash)
Notes
Images should be built for each platform (see buildx and manifest)
Registry
Repository
Tagged Image
Manifest
Manifest list
Ops
Commands
container
run
-t
-i
--name
--publish
start
ls
-a
exec
-i
-t
stop
rm
SIGKILl
image
build
-t
-f
ls
--filter
dangling=true
reference="*:latest"
--format
--digests
-q
prune
-a
inspect :star:
history
pull
NAME:TAG
NAME@DIGEST
rm
search
--filter
is-official=true
--limit
manifest
:star: inspect
create
buildx
build
--platform
port
hotkeys
Ctrl-PQ
To Read:
https://docs.docker.com/storage/storagedriver/
https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
Storage
Storage driver
Notes
Lower performance comparing to volumes :!:
Writable container layer
Tightly coupled to a container
Is not persisted when container does not exist :!:
Storage driver is used to write inti the layer
Is used by default to write all container data :!:
Security
Client Server communication
Notes
Restart policy
Always
Unless stopped
On failed
Networking
Notes
default Linux Bridge network does not support DNS
DNS works for containers started with --name or --net-alias
SIGTERM