Thanks for this advice. I figured out this exact same thing. So, my initial 
requirements have been met. Now it's time for me to figure out the pull 
portion. Thank you.

On Saturday, September 3, 2016 at 5:13:17 AM UTC-7, Rickard von Essen wrote:
>
> This works for me:
>
> eval $(aws --profile=packer-demo ecr get-login); packer build 
> ecr_docker.json
>
> With the following template - ecr_docker.json:
> {
>   "builders": [
>     {
>       "type": "docker",
>       "image": "alpine",
>       "run_command": ["-d", "-i", "-t", "{{.Image}}", "/bin/ash"],
>       "commit": true
>     }
>   ],
>   "post-processors": [
>     [
>       {
>         "type": "docker-tag",
>         "repository": "
> 965990659467.dkr.ecr.eu-central-1.amazonaws.com/packer-test",
>         "tag": "latest"
>       },
>       {
>         "type": "docker-push",
>         "login": false,
>         "login_server": "
> https://965990659467.dkr.ecr.eu-central-1.amazonaws.com/packer-test";
>       }
>     ]
>   ]
> }
>
> But it should be fairly easy to extend docker-push postprocessor to 
> support ECR. PR's are welcome.
>
>

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/packer/issues
IRC: #packer-tool on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Packer" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/packer-tool/cedbac52-a142-44ea-adf5-46ba235a2381%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to