Eric Holmes

Results 84 comments of Eric Holmes

I spiked into a little PoC implementation tonight: https://github.com/remind101/empire/compare/docker-native Pretty cool, and works well just using it locally. In an actual production environment, I think managing the Docker services via...

I think this is a little different, because these things depend on their runtime environment. For example, you can't feasibly run migrations without knowing what database to connect to. Definitely...

And to play devils advocate against myself...this is mostly only a problem because there's no concept of a grace period in ECS, which makes it hard to do these things...

In retrospect, we probably should have just made this part of the [quickstart guide](https://github.com/remind101/empire/blob/master/docs/quickstart_using.md). To answer your questions @dblackdblack: > Also what does "domain" mean? Is it a Route53 HostedZone?...

Hey @rgabo! Currently, Empire doesn't support renaming an application, but we have plans of supporting it. There's some subtleties about renaming, like ensuring that the CNAME for the ELB is...

@benguillet have you seen this happen recently? I can't recall running into this for quite a while (maybe we inadvertently fixed it by upgrading some dep?).

I got annoyed enough with this today to investigate a bit. Apparently, this is mostly a Docker issue. I can replicate it completely with: ```bash docker attach $(docker run -d...

Thinking about this a bit. If we pointed Empire at swarm for the Docker daemon, then we could just use the /containers endpoint and filter on the `com.amazonaws.ecs.task-arn` label.

I think the confusion here comes from the fact that scaling is the only change that can ever mutate a release. So if you scale up, it mutates the current...

There's no reason we couldn't support volumes in the Procfile, but here's the reasons why we haven't added it: 1. Volumes wouldn't be useful for us (Remind), since we don't...