mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-17 07:22:04 +01:00
commit
e7dd239d20
1 changed files with 14 additions and 0 deletions
14
README.md
14
README.md
|
@ -176,6 +176,20 @@ docker run -d --name bitwarden \
|
||||||
```
|
```
|
||||||
Note that you need to mount ssl files and you need to forward appropriate port.
|
Note that you need to mount ssl files and you need to forward appropriate port.
|
||||||
|
|
||||||
|
Softwares used for getting certs are often using symlinks. If that is the case, both locations need to be accessible to the docker container.
|
||||||
|
Example: certbot will create a folder that contains the needed cert.pem and privacy.pem files in /etc/letsencrypt/live/mydomain/
|
||||||
|
|
||||||
|
These files are symlinked to ../../archive/mydomain/mykey.pem
|
||||||
|
|
||||||
|
So to use from bitwarden container:
|
||||||
|
|
||||||
|
```sudo docker run -d --name bitwarden \
|
||||||
|
-e ROCKET_TLS='{certs="/ssl/live/mydomain/cert.pem",key="/ssl/live/mydomain/privkey.pem"}' \
|
||||||
|
-v /etc/letsencrypt/:/ssl/ \
|
||||||
|
-v /bw-data/:/data/ \
|
||||||
|
-p 443:80 \
|
||||||
|
mprasil/bitwarden:latest
|
||||||
|
```
|
||||||
### Enabling WebSocket notifications
|
### Enabling WebSocket notifications
|
||||||
*Important: This does not apply to the mobile clients, which use push notifications.*
|
*Important: This does not apply to the mobile clients, which use push notifications.*
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue