From 8910dadfb228dc2900c229b00492aff9f20fc403 Mon Sep 17 00:00:00 2001 From: diginc Date: Fri, 23 Sep 2016 21:24:14 -0500 Subject: [PATCH] updating the docker compose examples --- doco-example.yml | 7 +++---- jwilder-proxy-example-doco.yml | 14 ++++++++++++++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/doco-example.yml b/doco-example.yml index c61691d..4005c7e 100644 --- a/doco-example.yml +++ b/doco-example.yml @@ -19,8 +19,7 @@ pihole: # to your docker host ip address - 'pihole.yourdomain.local:192.168.1.55' volumes: - # WARNING: if these don't exist as files on the host already - # docker will try to create them as directories + # - '/etc/pihole/:/etc/pihole/' + # WARNING: if this log don't exist as a file on the host already + # docker will try to create a directory in it's place making for lots of errors # - '/var/log/pihole.log:/var/log/pihole.log' - #- '/etc/pihole/whitelist.txt:/etc/pihole/whitelist.txt' - # - '/etc/pihole/blacklist.txt:/etc/pihole/blacklist.txt' diff --git a/jwilder-proxy-example-doco.yml b/jwilder-proxy-example-doco.yml index 4448e1f..e44b882 100644 --- a/jwilder-proxy-example-doco.yml +++ b/jwilder-proxy-example-doco.yml @@ -33,3 +33,17 @@ pihole: - 'ghost ghost.yourDomain.lan:192.168.41.55' - 'wordpress wordpress.yourDomain.lan:192.168.41.55' restart: always + +# Another container you might want to have running through the proxy +# Note it also have ENV Vars like pihole and a host under pihole's extra_hosts +#ghost: +# image: fractalf/ghost +# ports: +# - '2368:2368/tcp' +# volumes: +# - '/etc/ghost/:/ghost-override' +# environment: +# PROXY_LOCATION: ghost +# VIRTUAL_HOST: ghost.yourDomain.lan +# VIRTUAL_PORT: 2368 +# restart: always