Home 도커 이미지 - 압축 파일
Post
Cancel

도커 이미지 - 압축 파일

도커 이미지 압축

압축 파일 만들기

  • 아웃풋 경로 지정 옵션
1
2
3
# docker save -o [output-file] IMAGE
# ubuntu:focal 이미지를 ubuntu_focal.tar로 저장
docker save -o ubuntu_focal.tar ubuntu:focal

압축 파일 불러오기

1
2
3
# docker load -i [input-file]
#  ubuntu_focal.tar 압축 파일에서 ubuntu:focal 이미지 불러오기
docker load -i ubuntu_focal.tar

이미지 삭제

1
docker rmi 이미지
This post is licensed under CC BY 4.0 by the author.