Browse Source

fix: issue 1045: TLS failures using self hosted email server

pull/1046/head
causalityloop 5 years ago
parent
commit
888ff6a973
  1. 4
      docker/amd64/sqlite/Dockerfile
  2. 7
      docker/bootstrap.sh

4
docker/amd64/sqlite/Dockerfile

@ -90,6 +90,8 @@ COPY docker/healthcheck.sh /healthcheck.sh
HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"]
COPY docker/bootstrap.sh /bootstrap.sh
# Configures the startup!
WORKDIR /
CMD ["/bitwarden_rs"]
CMD ["/bootstrap.sh"]

7
docker/bootstrap.sh

@ -0,0 +1,7 @@
#!/usr/bin/env bash
# add any certs the user might have bind mounted
update-ca-certificates
# start bitwarden
/bitwarden_rs
Loading…
Cancel
Save