[skip ci] prepare release
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Robert Kaussow 2020-10-18 13:23:10 +02:00
parent 196269387c
commit eae6fb5398
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
3 changed files with 9 additions and 4 deletions

View File

@ -1,2 +1,5 @@
- INTERNAL - INTERNAL
- migrate to `thegeeklab` namespace - update bitwarden_rs to v1.17.0
- update web vault to v2.16.1
- add SQLite support
- add `BITWARDENRS_ROCKET_WORKERS` variable

View File

@ -10,7 +10,7 @@ Custom image for BitwardenRS password manager
This is a rootless custom Docker image for [bitwarden_rs](https://github.com/dani-garcia/bitwarden_rs). Bitwarden_rs is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal. This is a rootless custom Docker image for [bitwarden_rs](https://github.com/dani-garcia/bitwarden_rs). Bitwarden_rs is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.
> __WARNING__: While bitwarden_rs does not allow to compile binaries with multi DB providers, this build will only work with a PostgreSQL database backend. > **WARNING**: This build supports SQLite and PostgreSQL database backend only.
## Usage ## Usage
@ -101,6 +101,8 @@ BITWARDENRS_SMTP_USERNAME=
BITWARDENRS_SMTP_PASSWORD= BITWARDENRS_SMTP_PASSWORD=
BITWARDENRS_SMTP_AUTH_MECHANISM=Plain BITWARDENRS_SMTP_AUTH_MECHANISM=Plain
BITWARDENRS_SMTP_TIMEOUT=15 BITWARDENRS_SMTP_TIMEOUT=15
BITWARDENRS_ROCKET_WORKERS=
``` ```
## License ## License

View File

@ -1,5 +1,5 @@
--- ---
version: '3' version: "3"
services: services:
postgres: postgres:
@ -12,7 +12,7 @@ services:
bitwardenrs: bitwardenrs:
container_name: bitwardenrs container_name: bitwardenrs
image: thegeeklab/bitwardenrs:latest image: thegeeklab/bitwardenrs
depends_on: depends_on:
- postgres - postgres
ports: ports: