mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-10 06:14:16 +00:00
Allow users to specify ROCKET_ENV when starting container
This commit is contained in:
parent
1cb67eee69
commit
ca31f117d5
1 changed files with 2 additions and 3 deletions
|
@ -6,6 +6,7 @@ FROM node:9-alpine as vault
|
||||||
|
|
||||||
ENV VAULT_VERSION "1.27.0"
|
ENV VAULT_VERSION "1.27.0"
|
||||||
ENV URL "https://github.com/bitwarden/web/archive/v${VAULT_VERSION}.tar.gz"
|
ENV URL "https://github.com/bitwarden/web/archive/v${VAULT_VERSION}.tar.gz"
|
||||||
|
ENV ROCKET_ENV "staging"
|
||||||
|
|
||||||
RUN apk add --update-cache --upgrade \
|
RUN apk add --update-cache --upgrade \
|
||||||
curl \
|
curl \
|
||||||
|
@ -86,6 +87,4 @@ COPY --from=vault /web-vault ./web-vault
|
||||||
COPY --from=build app/target/release/bitwarden_rs .
|
COPY --from=build app/target/release/bitwarden_rs .
|
||||||
|
|
||||||
# Configures the startup!
|
# Configures the startup!
|
||||||
# Use production to disable Rocket logging
|
CMD ./bitwarden_rs
|
||||||
#CMD ROCKET_ENV=production ./bitwarden_rs
|
|
||||||
CMD ROCKET_ENV=staging ./bitwarden_rs
|
|
||||||
|
|
Loading…
Reference in a new issue