2017-03-15 01:11:21 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
proxy:
|
|
|
|
image: jwilder/nginx-proxy:test
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/tmp/docker.sock:ro
|
|
|
|
- ./certs:/etc/nginx/certs:ro
|
2019-02-04 20:15:04 +00:00
|
|
|
- ../../lib/ssl/dhparam.pem:/etc/nginx/dhparam/dhparam.pem:ro
|
2017-03-15 01:11:21 +00:00
|
|
|
|
|
|
|
web1:
|
|
|
|
image: web
|
|
|
|
expose:
|
|
|
|
- "81"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: "81"
|
|
|
|
VIRTUAL_HOST: "1.web.nginx-proxy.tld"
|
|
|
|
web2:
|
|
|
|
image: web
|
|
|
|
expose:
|
|
|
|
- "82"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: "82"
|
|
|
|
VIRTUAL_HOST: "2.web.nginx-proxy.tld"
|
|
|
|
|
|
|
|
web3_nohttps:
|
|
|
|
image: web
|
|
|
|
expose:
|
|
|
|
- "83"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: "83"
|
|
|
|
VIRTUAL_HOST: "3.web.nginx-proxy.tld"
|
2019-02-04 20:15:04 +00:00
|
|
|
HTTPS_METHOD: nohttps
|