diff options
author | Daniel García <[email protected]> | 2018-11-01 00:07:03 +0100 |
---|---|---|
committer | Daniel García <[email protected]> | 2018-11-01 19:25:10 +0100 |
commit | e844f41abcb4b78db1f4a08ab1378fa843a536d2 (patch) | |
tree | 4aba28c3c6bcbe477d02645a0b4dbcce1ca56835 /Dockerfile.alpine | |
parent | bc532f54d5ae5728704d87fe6323843819c1fc8f (diff) | |
download | vaultwarden-e844f41abcb4b78db1f4a08ab1378fa843a536d2.tar.gz vaultwarden-e844f41abcb4b78db1f4a08ab1378fa843a536d2.zip |
Make the docker images use port 80 (instead of 8000, which is the default in rocket 0.4)
Diffstat (limited to 'Dockerfile.alpine')
-rw-r--r-- | Dockerfile.alpine | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile.alpine b/Dockerfile.alpine index edcfd59a..03cc09d2 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -56,6 +56,7 @@ RUN cargo build --release FROM alpine:3.8 ENV ROCKET_ENV "staging" +ENV ROCKET_PORT=80 ENV ROCKET_WORKERS=10 ENV SSL_CERT_DIR=/etc/ssl/certs |