2023-12-11 14:25:04 +01:00
|
|
|
services:
|
|
|
|
nginx-proxy:
|
|
|
|
image: nginxproxy/nginx-proxy:test
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/tmp/docker.sock:ro
|
2024-11-01 21:54:59 +01:00
|
|
|
- ./my_custom_proxy_settings_f00.conf:/etc/nginx/vhost.d/default_location:ro
|
2023-12-11 14:25:04 +01:00
|
|
|
- ./my_custom_proxy_settings_bar.conf:/etc/nginx/vhost.d/web3.nginx-proxy.example_location:ro
|
2017-01-27 02:34:11 +01:00
|
|
|
|
2023-12-11 14:25:04 +01:00
|
|
|
web1:
|
|
|
|
image: web
|
|
|
|
expose:
|
|
|
|
- "81"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: 81
|
|
|
|
VIRTUAL_HOST: web1.nginx-proxy.example
|
2017-01-27 02:34:11 +01:00
|
|
|
|
2023-12-11 14:25:04 +01:00
|
|
|
web2:
|
|
|
|
image: web
|
|
|
|
expose:
|
|
|
|
- "82"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: 82
|
|
|
|
VIRTUAL_HOST: web2.nginx-proxy.example
|
|
|
|
|
|
|
|
web3:
|
|
|
|
image: web
|
|
|
|
expose:
|
|
|
|
- "83"
|
|
|
|
environment:
|
|
|
|
WEB_PORTS: 83
|
|
|
|
VIRTUAL_HOST: web3.nginx-proxy.example
|