2
0

test_proxy-debug-flag.yml 441 B

1234567891011121314151617181920212223242526
  1. web1:
  2. image: web
  3. expose:
  4. - "80"
  5. - "81"
  6. environment:
  7. WEB_PORTS: "80 81"
  8. VIRTUAL_HOST: "web1.nginx-proxy.tld"
  9. VIRTUAL_PORT: "82"
  10. web2:
  11. image: web
  12. expose:
  13. - "82"
  14. - "83"
  15. environment:
  16. WEB_PORTS: "82 83"
  17. VIRTUAL_HOST: "web2.nginx-proxy.tld"
  18. VIRTUAL_PORT: "82"
  19. sut:
  20. image: nginxproxy/nginx-proxy:test
  21. volumes:
  22. - /var/run/docker.sock:/tmp/docker.sock:ro
  23. environment:
  24. DEBUG: "true"