반응형
Docker 명령어 - image 조회
공식 저장소 조회
docker search ubutu
local 저장소 조회 1
docker image ls
local 저장소 조회 2
docker images
local 저장소 id만 조회
docker images -q
local 저장소 dangling 조회
docker images -f dangling=true
사용중인 컨테이너의 이미지를 강제 삭제하면 이미지 이름이 none으로 표시되며, 이것을 dangling 이라고 한다.
layer 확인
docker inspect --type=Layers {container_name}
by mkdir-chandler
728x90
반응형
'Ops > Docker' 카테고리의 다른 글
Docker 명령어 - image 삭제 (0) | 2023.10.21 |
---|---|
Docker 명령어 - image 생성 (0) | 2023.10.20 |
Docker 명령어 - container 자동 재시작 (0) | 2023.10.18 |
Docker 명령어 - container 리소스 변경사항 적용 (0) | 2023.10.17 |
Docker 명령어 - container ip / port 확인 (0) | 2023.10.16 |