https://pyrasis.com/book/DockerForTheReallyImpatient/Chapter05
docker history [이미지 이름]:[태그]
형식.- 이미지 이름 대신 이미지 ID를 사용해도 됨.
$ docker history hello:0.1
docker cp [컨테이너 이름]:[경로] [호스트 경로]
형식.
$ docker cp hello-nginx:/etc/nginx/nginx.conf ./
docker commit [옵션] [컨테이너 이름] [이미지 이름]:[태그]
형식.- 컨테이너 이름 대신 컨테이너 ID를 사용해도 됨.
$ `docker commit -a "Jehyun Lee <[email protected]>" -m "add hello.txt" hello-nginx hello:0.2
docker diff [컨테이너 이름]
형식.- 컨테이너 이름 대신 컨테이너 ID를 사용해도 됨.
$ docker diff hello-nginx
A
: 추가된 파일, C
: 변경된 파일, D
: 삭제된 파일.
docker inspect [이미지 or 컨테이너 이름]
형식.- 이미지나 컨테이너 이름 대신 ID를 사용해도 됨.
$ docker inspect hello-nginx