May 15, 2015Packer で複数のリポジトリ名や複数のタグが付いた Docker イメージを作る 環境Ubuntu 15.04Docker 1.6.0Packer 0.7.5例いきなりですが、実際の例を見た方が早いので、テンプレートの例です。 { "builders":[{ "type": "docker", "image": "fedora", "commit": "true" }], "provisioners":[ { "type": "shell", "inline": [ "yum update -y", "yum clean all" ] } ], "post-processors": [ [ { "type": "docker-tag", "repository": "higebu/fedora1", "tag": "0.1" }, "docker-push" ]