volumes: nginx_conf: services: nginx-proxy: profiles: - singleContainer image: nginxproxy/nginx-proxy:test volumes: - &dockerSocket /var/run/docker.sock:/tmp/docker.sock:ro - &vhostLocationConf ./my_custom_proxy_settings_f00.conf:/etc/nginx/vhost.d/web1.nginx-proxy.example_location:ro - ®exLocationConf ./my_custom_proxy_settings_bar.conf:/etc/nginx/vhost.d/561032515ede3ab3a015edfb244608b72409c430_location:ro nginx-proxy-dockergen: profiles: - separateContainers image: nginxproxy/nginx-proxy:test-dockergen volumes: - &confVolume nginx_conf:/etc/nginx/conf.d - *dockerSocket - *vhostLocationConf - *regexLocationConf nginx-proxy-nginx: profiles: - separateContainers container_name: nginx-proxy image: nginx:alpine volumes: - *confVolume - *vhostLocationConf - *regexLocationConf 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$