Brian Morton

Results 57 comments of Brian Morton

After experimenting with vulcand, CoreOS/Fleet, and Docker for a while, I decided to write some automation around zero-downtime deploys using vulcand to facilitate this. The result of this is a...

Oh, and if it wasn't clear, I love the project :) It really is a joy to use and the amount of effort around documentation and making this easy to...

I'm seeing the same thing in master still. Anyone come across a fix for this yet?

[This bug report](https://gcc.gnu.org/ml/gcc-bugs/2014-02/msg00177.html) makes it seem like its a bug in GCC 4.8.1, which is the only GCC 4.8 package available for Ubuntu 12.04 as far as I can find....

Thinking out loud on ways we could do this and what complications we might have. I haven't checked, but I'd imagine there's a API we can use for Docker hub...

[Here's the API](https://docs.docker.com/reference/api/registry_api/#list-repository-tags) we'd probably want to query the registry. Not sure if this works for both public and private registries.

Do you have an example of how to pull that? Once we have credentials, we can pull like this: ``` shellsession camisado:~$ curl -s https://registry.hub.docker.com/v1/repositories/bmorton/privaterepo/tags -H "Authorization: Basic base64creds" |...

Oh, and it looks like there's a client available too: https://github.com/CenturyLinkLabs/docker-reg-client

Yeah, that's what I was afraid of. I don't have a strong preference as to how to pass this in. A really hacky way of doing this would be to...