yoursyun
docker back-up 및 load 본문
1. 현재 운영중인 컨테이너를 이미지 백업 받는다.
-- m 메시지(어떤이미지인지) -a (누가작성) from 어떤컨테이너 에서 to 이미지를 만든다.
[root@pororicom ~]# docker commit -m "centos,nginx" -a "kei" centosd centosweb
[root@pororicom ~]# docker images
2. 이미지를 디스크에 저장한다.
[root@pororicom ~]# docker save -o centosimg.tar centosweb
3. 디스크에 저장된 이미지를 로드한다.
[root@pororicom ~]# docker load –i centosimg.tar
[root@pororicom ~]# docker images
반응형