더보기
docker image inspect --format="{{.0s}}" httpd:2.4
docker image inspect --format="{{.ContainerConfig.ExposedPorts}}" httpd:2.4
docker image inspect --format="{{.ContainerConfig.ExposedPorts}} {{.0s}}" httpd:2.4
docker image history httpd:2.4
docker image history httpd:2.4 --no-trunc > httpd24.txt
ls
docker pull httpd:2.4
cd /var/lib/docker/image/overlay2/distribution/diffid-by-digest/sha256/
이미지는 레이어 구조로 되어있다
docker run 하면 스냅샷이 저장된다
이미지 레이어는 불변이
계층구조로 되어있는 유니온 시스템
'Docker' 카테고리의 다른 글
| Docker image 관리 (0) | 2025.11.14 |
|---|---|
| Docker hub repository에 이미지 푸쉬 (0) | 2025.11.04 |
| 도커 엔진 업데이트 (0) | 2025.11.03 |
| Docker 플랫폼 환경 구성 (0) | 2025.11.03 |
| 도커 컨테이너 서비스 구현 (0) | 2025.10.28 |