docker tag 追記:2015/02/20
コメントにて教えていただいたtag
コマンドで1発でした。
docker tag $(ubuntu_imageid) umintu
-
tag
コマンドでumintu
イメージを作成 -
ubuntu
イメージを削除
1. docker tag $(ubuntu_imageid) umintu
2. docker rmi ubuntu
イメージ ubuntu
をumintu
にリネーム
-
ubuntu
イメージからtemp
コンテナを起動 -
commit
で、umintu
イメージを作成 -
temp
コンテナを停止 -
temp
コンテナを削除 -
ubuntu
イメージを削除
1. docker run -d --name="temp" ubuntu
2. docker commit temp umintu
3. docker stop temp
4. docker rm temp
5. docker rmi ubuntu
docker images
すれば、新しいumintu
だけになっているはず。