1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-05-12 18:46:06 +02:00
nginx-proxy/test/test_multiple-networks.yml

35 lines
525 B
YAML
Raw Normal View History

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