mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-02-05 05:41:39 +01:00
30 lines
412 B
YAML
30 lines
412 B
YAML
networks:
|
|
netA:
|
|
netB:
|
|
|
|
services:
|
|
nginx-proxy:
|
|
container_name: reverseproxy
|
|
networks:
|
|
- netA
|
|
|
|
webA:
|
|
networks:
|
|
- netA
|
|
image: web
|
|
expose:
|
|
- 81
|
|
environment:
|
|
WEB_PORTS: "81"
|
|
VIRTUAL_HOST: webA.nginx-proxy
|
|
|
|
webB:
|
|
networks:
|
|
- netB
|
|
image: web
|
|
expose:
|
|
- 82
|
|
environment:
|
|
WEB_PORTS: "82"
|
|
VIRTUAL_HOST: webB.nginx-proxy
|