|
|
@@ -10,7 +10,7 @@ services:
|
|
|
nginxproxy:
|
|
|
image: jwilder/nginx-proxy
|
|
|
container_name: nginxproxy
|
|
|
- restart: always
|
|
|
+ restart: unless-stopped
|
|
|
environment:
|
|
|
- TZ=Europe/Berlin
|
|
|
ports:
|
|
|
@@ -21,18 +21,15 @@ services:
|
|
|
ipv4_address: 172.20.0.2
|
|
|
volumes:
|
|
|
- /var/run/docker.sock:/tmp/docker.sock:ro
|
|
|
-# - nginxproxy_certs:/etc/nginx/certs:ro
|
|
|
- ./nginxproxy_certs:/etc/nginx/certs:ro
|
|
|
-# - nginxproxy_vhosts:/etc/nginx/vhost.d
|
|
|
- ./nginxproxy_vhosts:/etc/nginx/vhost.d
|
|
|
-# - nginxproxy_html:/usr/share/nginx/html
|
|
|
- ./nginxproxy_html:/usr/share/nginx/html
|
|
|
labels:
|
|
|
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
|
|
|
nginxproxy_comp:
|
|
|
image: jrcs/letsencrypt-nginx-proxy-companion
|
|
|
container_name: nginxproxy_comp
|
|
|
- restart: always
|
|
|
+ restart: unless-stopped
|
|
|
depends_on:
|
|
|
- nginxproxy
|
|
|
environment:
|