mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-04-30 13:17:56 +02:00
63 lines
1.1 KiB
YAML
63 lines
1.1 KiB
YAML
networks:
|
|
net1:
|
|
enable_ipv6: true
|
|
ipam:
|
|
config:
|
|
- subnet: fd00:1::/80
|
|
|
|
volumes:
|
|
nginx_conf:
|
|
|
|
|
|
services:
|
|
web1:
|
|
image: web
|
|
expose:
|
|
- "81"
|
|
environment:
|
|
WEB_PORTS: 81
|
|
VIRTUAL_HOST: web1.nginx-proxy.tld
|
|
networks:
|
|
- net1
|
|
|
|
web2:
|
|
image: web
|
|
expose:
|
|
- "82"
|
|
environment:
|
|
WEB_PORTS: 82
|
|
VIRTUAL_HOST: web2.nginx-proxy.tld
|
|
networks:
|
|
- net1
|
|
|
|
sut:
|
|
profiles:
|
|
- singleContainer
|
|
image: nginxproxy/nginx-proxy:test
|
|
volumes:
|
|
- &dockerSocket /var/run/docker.sock:/tmp/docker.sock:ro
|
|
networks:
|
|
- net1
|
|
|
|
sut-dockergen:
|
|
profiles:
|
|
- separateContainers
|
|
image: nginxproxy/nginx-proxy:test-dockergen
|
|
volumes:
|
|
- &confVolume nginx_conf:/etc/nginx/conf.d
|
|
- *dockerSocket
|
|
networks:
|
|
- net1
|
|
|
|
sut-nginx:
|
|
profiles:
|
|
- separateContainers
|
|
container_name: nginx-proxy
|
|
image: nginx:alpine
|
|
volumes:
|
|
- *confVolume
|
|
networks:
|
|
- net1
|
|
labels:
|
|
- "com.github.nginx-proxy.nginx-proxy.nginx"
|