Add dependency to nginx to fix startup order

Karsten Heymann 2020-12-30 09:05:05 +01:00
parent b157a36aeb
commit d71a39c755

2
TLS.md

@ -44,6 +44,8 @@ services:
environment:
HITCH_PEM: /app/localhost.pem # path within the container to the TLS certificate
HITCH_PARAMS: --backend=[nginx]:8080 --frontend=[*]:443 # listen on *:443 and forward traffic to nginx:8080
depends_in:
- nginx
volumes:
- ./localhost+2-full.pem:/app/localhost.pem # mount the TLS certificate
ports: