Set port to 8080 instead of 80

This commit is contained in:
TwinProduction
2019-10-05 22:20:36 -04:00
parent c4e02e3a75
commit 40eb35aab2
2 changed files with 8 additions and 7 deletions

View File

@ -11,6 +11,6 @@ COPY --from=builder /app/gatus .
COPY --from=builder /app/config.yaml .
COPY --from=builder /app/static static/
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
ENV PORT 80
EXPOSE 80
ENTRYPOINT ["/gatus"]
ENV PORT 8080
EXPOSE 8080
ENTRYPOINT ["/gatus"]