본문 바로가기
linux/docker

docker tar로 만들기, tar import 하기

by 후린트 2020. 9. 16.
반응형

# 기본 hello-world 도커 이미지 pull
# docker pull imageName

$ docker pull hello-world

 

# hello-world 이미지 tar로 만들기 
# docker save -o filename.tar imageName

$ docker save -o hello-world.tar hello-world 

# hello-world.tar 로 restore-hello-world 이미지 생성 
# docker import filename.tar imageName

$ docker import hello-world.tar restore-hello-world

 

 

반응형