From feeec30249b4f34d935444f410ae19176a5eed49 Mon Sep 17 00:00:00 2001 From: lza_menace Date: Mon, 6 Jul 2020 22:55:44 -0700 Subject: [PATCH] set default compose file to dockerhub upstream, but keep optional local builder --- wownero/docker-compose.local.yaml | 43 +++++++++++++++++++++++++++++++ wownero/docker-compose.yaml | 27 +++++++++---------- 2 files changed, 57 insertions(+), 13 deletions(-) create mode 100644 wownero/docker-compose.local.yaml diff --git a/wownero/docker-compose.local.yaml b/wownero/docker-compose.local.yaml new file mode 100644 index 0000000..e53394c --- /dev/null +++ b/wownero/docker-compose.local.yaml @@ -0,0 +1,43 @@ +version: '3' +services: + reverse-proxy: + image: traefik:v2.2 + command: + # Try to enable this if something isn't working. Chances are, Traefik will tell you why + # Be careful on production as it exposes the traffic you might not want to expose + #--log.level=DEBUG + # --api.dashboard=true + # --api.insecure=true + + --entrypoints.http.address=:80 + --entrypoints.https.address=:443 + --providers.docker=true + --api=false + --certificatesresolvers.letsencrypt.acme.httpchallenge=true + --certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=http + --certificatesresolvers.letsencrypt.acme.email=${ACME_EMAIL} + --certificatesresolvers.letsencrypt.acme.storage=/letsencrypt/acme.json + ports: + - 80:80 + - 443:443 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ./data/letsencrypt:/letsencrypt + wownerod: + build: + context: . + volumes: + - ./data/daemon:/data + command: + wownerod --data-dir=/data --rpc-bind-ip=0.0.0.0 --confirm-external-bind --non-interactive --public-node --restricted-rpc + ports: + - 34568:34568 + labels: + - "traefik.http.routers.https.rule=Host(`${DAEMON_HOSTNAME}`)" + - "traefik.http.routers.http.rule=Host(`${DAEMON_HOSTNAME}`)" + - "traefik.http.routers.https.entrypoints=https" + - "traefik.http.routers.http.entrypoints=http" + - "traefik.http.routers.https.tls=true" + - "traefik.http.routers.https.tls.certresolver=letsencrypt" + ports: + - "8000:8000" diff --git a/wownero/docker-compose.yaml b/wownero/docker-compose.yaml index c234578..c31afef 100644 --- a/wownero/docker-compose.yaml +++ b/wownero/docker-compose.yaml @@ -5,13 +5,14 @@ services: command: # Try to enable this if something isn't working. Chances are, Traefik will tell you why # Be careful on production as it exposes the traffic you might not want to expose - # --log.level=DEBUG + #--log.level=DEBUG # --api.dashboard=true # --api.insecure=true - + --entrypoints.http.address=:80 --entrypoints.https.address=:443 --providers.docker=true + --api=false --certificatesresolvers.letsencrypt.acme.httpchallenge=true --certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=http --certificatesresolvers.letsencrypt.acme.email=${ACME_EMAIL} @@ -19,23 +20,23 @@ services: ports: - 80:80 - 443:443 - # - 8080:8080 volumes: - /var/run/docker.sock:/var/run/docker.sock - ./data/letsencrypt:/letsencrypt wownerod: - build: - context: . + image: lalanza808/wownero:latest volumes: - - ./data:/data + - ./data/daemon:/data command: - wownerod --data-dir=/data --rpc-bind-ip=0.0.0.0 --confirm-external-bind --non-interactive + wownerod --data-dir=/data --rpc-bind-ip=0.0.0.0 --confirm-external-bind --non-interactive --public-node --restricted-rpc + ports: + - 34568:34568 labels: - - "traefik.http.routers.http.rule=Host(`${URL}`)" + - "traefik.http.routers.https.rule=Host(`${DAEMON_HOSTNAME}`)" + - "traefik.http.routers.http.rule=Host(`${DAEMON_HOSTNAME}`)" + - "traefik.http.routers.https.entrypoints=https" - "traefik.http.routers.http.entrypoints=http" - # - "traefik.http.routers.https.rule=Host(`localhost:8000`)" - # - "traefik.http.routers.https.entrypoints=https" - # - "traefik.http.routers.https.tls=true" - # - "traefik.http.routers.https.tls.certresolver=letsencrypt" + - "traefik.http.routers.https.tls=true" + - "traefik.http.routers.https.tls.certresolver=letsencrypt" ports: - - "34568:34568" + - 8000:8000