ecs-gen
ecs-gen copied to clipboard
docker-gen for AWS ECS
Fixes [fargate support](https://github.com/codesuki/ecs-nginx-proxy/issues/20) from the `ecs-nginx-proxy` project. New to: go, amazon ecs, and fargate so this is definitely a hack, but it works for me! Feedback would be appreciated.
docker inspect on my app container shows: ``` "Env": [ "VIRTUAL_HOST=kegduino.org www.kegduino.org", ``` My task definition: ``` "environment": [ { "name": "VIRTUAL_HOST", "value": "kegduino.org www.kegduino.org" } ], ``` However the...
HAProxy
What would be required to get this running to generate configuration for HAProxy reverse proxy setups?
thoughts about supporting basic_auth ? Basically I'm thinking of `VIRTUAL_BASIC_AUTH=admin:hashedpassword` by leveraging apache2-utils. Each container could optionally have that variable which would allow us to generate the htpassword dynamically at...
It seems that docker-gen as of 0.4.0 supports placing some variables in labels instead of environment variables, which is a bit cleaner. https://github.com/jwilder/nginx-proxy/issues/172#issuecomment-107810833 Thoughts on implementing this? I could try...