mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-08-20 12:36:40 +02:00
60 lines
1.3 KiB
YAML
60 lines
1.3 KiB
YAML
volumes:
|
|
nginx_conf:
|
|
|
|
|
|
services:
|
|
nginx-proxy:
|
|
profiles:
|
|
- singleContainer
|
|
image: nginxproxy/nginx-proxy:test
|
|
volumes:
|
|
- &dockerSocket /var/run/docker.sock:/tmp/docker.sock:ro
|
|
- &vhostConf ./my_custom_proxy_settings_f00.conf:/etc/nginx/vhost.d/web1.nginx-proxy.example:ro
|
|
- ®exConf ./my_custom_proxy_settings_bar.conf:/etc/nginx/vhost.d/561032515ede3ab3a015edfb244608b72409c430:ro
|
|
|
|
nginx-proxy-dockergen:
|
|
profiles:
|
|
- separateContainers
|
|
image: nginxproxy/nginx-proxy:test-dockergen
|
|
volumes:
|
|
- &confVolume nginx_conf:/etc/nginx/conf.d
|
|
- *dockerSocket
|
|
- *vhostConf
|
|
- *regexConf
|
|
|
|
nginx-proxy-nginx:
|
|
profiles:
|
|
- separateContainers
|
|
container_name: nginx-proxy
|
|
image: nginx:alpine
|
|
volumes:
|
|
- *confVolume
|
|
- *vhostConf
|
|
- *regexConf
|
|
labels:
|
|
- "com.github.nginx-proxy.nginx-proxy.nginx"
|
|
|
|
web1:
|
|
image: web
|
|
expose:
|
|
- "81"
|
|
environment:
|
|
WEB_PORTS: 81
|
|
VIRTUAL_HOST: web1.nginx-proxy.example
|
|
|
|
web2:
|
|
image: web
|
|
expose:
|
|
- "82"
|
|
environment:
|
|
WEB_PORTS: 82
|
|
VIRTUAL_HOST: web2.nginx-proxy.example
|
|
|
|
regex:
|
|
image: web
|
|
expose:
|
|
- "83"
|
|
environment:
|
|
WEB_PORTS: 83
|
|
VIRTUAL_HOST: ~^regex.*\.nginx-proxy\.example$
|