You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
build: ./client # Location of the Dockerfile for the client
restart: always
volumes:
- ./.caddy:/root/.caddy # to save certificates on disk
environment:
CADDY_HOST: "${APP_HOST:-localhost}" # The domain/host to serve to
CADDY_TLS: "${APP_TLS_EMAIL:-off}" # Set to email address to enable TLS
ACME_AGREE: "${APP_ACME_AGREE:-false}" # Set to true to agree to the Let's Encrypt Subscriber Agreement (https://letsencrypt.org/documents/2017.11.15-LE-SA-v1.2.pdf)
ports:
- "2015:2015"
- "80:80" # http
- "443:443" # https
depends_on:
- server
server:
build: ./server # Location of the Dockerfile for the client
restart: always
environment:
MONGO_ADDR: mongo # hostname of the mongo container
MONGO_DB: prod
WAIT_HOSTS: mongo:27017 # wait for mongo to start up before starting the server