2017-02-11 01:04:40 +00:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
networks:
|
|
|
|
net1: {}
|
|
|
|
net2: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
nginx-proxy:
|
|
|
|
image: jwilder/nginx-proxy:test
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/tmp/docker.sock:ro
|
2017-03-07 19:04:44 +00:00
|
|
|
- ./lib/ssl/dhparam.pem:/etc/nginx/dhparam/dhparam.pem:ro
|
2017-02-11 01:04:40 +00:00
|
|
|
networks:
|
|
|
|
- net1
|
|
|
|
- net2
|
|
|
|
|
|
|
|
web1:
|
2017-03-07 19:04:44 +00:00
|
|
|
image: web
|
2017-02-11 01:04:40 +00:00
|
|
|
expose:
|
|
|
|
- "81"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: 81
|
|
|
|
VIRTUAL_HOST: web1.nginx-proxy.local
|
|
|
|
networks:
|
|
|
|
- net1
|
|
|
|
|
|
|
|
web2:
|
2017-03-07 19:04:44 +00:00
|
|
|
image: web
|
2017-02-11 01:04:40 +00:00
|
|
|
expose:
|
|
|
|
- "82"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: 82
|
|
|
|
VIRTUAL_HOST: web2.nginx-proxy.local
|
|
|
|
networks:
|
2017-03-07 19:04:44 +00:00
|
|
|
- net2
|