Please enable JavaScript.
Coggle requires JavaScript to display documents.
Docker images (Docker image filesystem (consist of layers of read-only…
Docker images
Docker image filesystem
-
when a container is made of an image, a writable file system will be layered on top of the read-only filesystems where all the processes will execute
-
Changes to files are made by coping the file from the read-only to the writable area, this is called "copy on write"
-
-
-
-
Building images
-
-
-
docker build -t="<repository target:<tage>>" [. for local directory for Dockerfile] [GitHub for remote file] [-f <path to file>]
-
Repositories
User repository
-
use at own risk, not verified by Docker
-
-
-