dockercloud-haproxy icon indicating copy to clipboard operation
dockercloud-haproxy copied to clipboard

HAproxy image that autoreconfigures itself when used in Docker Cloud

Results 34 dockercloud-haproxy issues
Sort by recently updated
recently updated
newest added
trafficstars

docker-compose.yaml: ``` version: "3" services: app: image: xxx proxy: image: dockercloud/haproxy links: - app ports: - 81:80 volumes: - /var/run/docker.sock:/var/run/docker.sock ``` After run `docker-compose up --scale app=2` , I got...

seems the container naming schema changed, which may be the cause that it can't find the containers

Compose 1.23.0 adds a random slug to the container names. This PR detects `com.docker.compose.slug` to determine if a slug needs to be removed from a container name to derive the...

Docker is behaving very disrespectuflly to its users by this kind of decisions, the deprecation commit e60afef04be1c3eefde684c4e5e44ec8d1e91b02 didn't describe why the project is being deprecated or if there are any...

``` docker --name app-1 --expose 9000 --expose 9001 -e TCP_PORTS="9000, 9001" your_app docker --name app-2 --expose 9000 --expose 9001 -e TCP_PORTS="9000, 9001" your_app docker run --link app-1:app-1 --link app-2:app-2 -p...

There are no commits or releases for a long period of time. There used to be monthly releases.

How can we add rule to update url with dockerclour-haproxy, similar to https://www.haproxy.com/documentation/aloha/7-0/traffic-management/lb-layer7/http-rewrite/

Is there any enterprise support option available for this application?

The `HTTP_BASIC_AUTH` variable only applies at the global level. Is it possible to require authentication for just a specific service without setting it globally and excluding every other service?

I have a very basic (Next, next, next) HAProxy LB on cloud.docker.com. I don't have any repository and I do all the configuration through Environment Variables. Even Certs. I can't...