selfhosted-apps-docker/bitwarden_rs/readme.md

177 lines
5.0 KiB
Markdown
Raw Normal View History

2020-04-09 22:52:11 +00:00
# Bitwarden_rs in docker
###### guide by example
2020-04-16 22:05:54 +00:00
![logo](https://i.imgur.com/tT3FQLJ.png)
2020-04-09 22:52:11 +00:00
2020-04-16 22:05:54 +00:00
## Purpose
2020-04-09 22:52:11 +00:00
Password manager. RS version is simpler and lighter than the official bitwarden.
* [Official site](https://bitwarden.com/)
* [Github](https://github.com/dani-garcia/bitwarden_rs)
2020-04-10 09:55:22 +00:00
* [DockerHub](https://hub.docker.com/r/bitwardenrs/server)
2020-04-09 22:52:11 +00:00
2020-04-16 22:05:54 +00:00
## Files and directory structure
2020-04-09 22:52:11 +00:00
```
/home
└── ~
└── docker
└── bitwarden
├── 🗁 bitwarden-data
├── 🗋 .env
├── 🗋 docker-compose.yml
└── 🗋 bitwarden-backup-script.sh
```
2020-04-16 22:05:54 +00:00
## docker-compose
2020-04-09 22:52:11 +00:00
[Documentation](https://github.com/dani-garcia/bitwarden_rs/wiki/Using-Docker-Compose) on compose.
`docker-compose.yml`
```
version: "3"
services:
bitwarden:
image: bitwardenrs/server
hostname: bitwarden
container_name: bitwarden
restart: unless-stopped
2020-04-16 22:05:54 +00:00
env_file: .env
2020-04-09 22:52:11 +00:00
volumes:
- ./bitwarden-data/:/data/
networks:
default:
external:
name: $DEFAULT_NETWORK
```
`.env`
```
# GENERAL
MY_DOMAIN=blabla.org
DEFAULT_NETWORK=caddy_net
TZ=Europe/Prague
# BITWARDEN
ADMIN_TOKEN=YdLo1TM4MYEQ948GOVZ29IF4fABSrZMpk9
SIGNUPS_ALLOWED=true
2020-04-22 02:19:50 +00:00
WEBSOCKET_ENABLED=true
2020-04-09 22:52:11 +00:00
# USING SENDGRID FOR SENDING EMAILS
2020-04-10 09:55:22 +00:00
DOMAIN=https://passwd.blabla.org
2020-04-09 22:52:11 +00:00
SMTP_SSL=true
SMTP_EXPLICIT_TLS=true
SMTP_HOST=smtp.sendgrid.net
SMTP_PORT=465
SMTP_USERNAME=apikey
SMTP_PASSWORD=SG.MOQQegA3bgfodRN4IG2Wqwe.s23Ld4odqhOQQegf4466A4
SMTP_FROM=admin@blabla.org
```
2020-04-16 22:05:54 +00:00
**All containers must be on the same network**.</br>
If one does not exist yet: `docker network create caddy_net`
## Reverse proxy
2020-04-09 22:52:11 +00:00
2020-04-22 01:26:26 +00:00
Caddy v2 is used, details [here.](https://github.com/DoTheEvo/Caddy-v2-docker-example-setup)</br>
2020-04-09 22:52:11 +00:00
Bitwarden_rs documentation has a [section on reverse proxy.](https://github.com/dani-garcia/bitwarden_rs/wiki/Proxy-examples)
`Caddyfile`
```
{
# acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
}
passwd.{$MY_DOMAIN} {
2020-04-16 22:05:54 +00:00
header / {
X-XSS-Protection "1; mode=block"
X-Frame-Options "DENY"
X-Robots-Tag "none"
-Server
}
2020-04-09 22:52:11 +00:00
encode gzip
reverse_proxy /notifications/hub/negotiate bitwarden:80
reverse_proxy /notifications/hub bitwarden:3012
reverse_proxy bitwarden:80
}
```
2020-04-16 22:05:54 +00:00
## Forward port 3012 on your router
2020-04-09 22:52:11 +00:00
- websocket protocol used for some kind of notifications
2020-04-16 22:05:54 +00:00
## Extra info
2020-04-09 22:52:11 +00:00
2020-04-10 09:55:22 +00:00
* **bitwarden can be managed** at `<url>/admin` and entering `ADMIN_TOKEN` set in the `.env` file
2020-04-09 22:52:11 +00:00
2020-04-16 22:05:54 +00:00
---
2020-04-09 22:52:11 +00:00
![interface-pic](https://i.imgur.com/5LxEUsA.png)
2020-04-16 22:05:54 +00:00
## Update
2020-04-09 22:52:11 +00:00
2020-04-10 09:55:22 +00:00
* [watchtower](https://github.com/DoTheEvo/selfhosted-apps-docker/tree/master/watchtower) updates the image automaticly
2020-04-09 22:52:11 +00:00
* manual image update</br>
`docker-compose pull`</br>
`docker-compose up -d`</br>
`docker image prune`
2020-04-16 22:05:54 +00:00
## Backup and restore
2020-04-09 22:52:11 +00:00
2020-04-10 09:55:22 +00:00
* **backup** using [borgbackup setup](https://github.com/DoTheEvo/selfhosted-apps-docker/tree/master/borg_backup)
that makes daily snapshot of the entire directory
2020-04-09 22:52:11 +00:00
* **restore**</br>
down the bitwarden container `docker-compose down`</br>
delete the entire bitwarden directory</br>
from the backup copy back the bitwarden directortory</br>
start the container `docker-compose up -d`
2020-04-16 22:05:54 +00:00
## Backup of just user data
2020-04-09 22:52:11 +00:00
2020-04-10 09:55:22 +00:00
user-data daily export using the [official procedure.](https://github.com/dani-garcia/bitwarden_rs/wiki/Backing-up-your-vault)</br>
For bitwarden_rs it means sqlite database dump and backing up `attachments` directory.
The created backup files are overwriten on every run of the script,
but borg backup is daily making snapshot of the entire directory.
2020-04-09 22:52:11 +00:00
2020-04-10 09:55:22 +00:00
* **create a backup script**</br>
2020-04-09 22:52:11 +00:00
placed inside `bitwarden` directory on the host
2020-04-10 09:55:22 +00:00
`bitwarden-backup-script.sh`
2020-04-09 22:52:11 +00:00
```
2020-04-10 09:55:22 +00:00
#!/bin/bash
2020-04-09 22:52:11 +00:00
# CREATE SQLITE BACKUP
2020-04-10 09:55:22 +00:00
docker container exec bitwarden sqlite3 /data/db.sqlite3 ".backup '/data/BACKUP.bitwarden.db.sqlite3'"
2020-04-09 22:52:11 +00:00
# BACKUP ATTACHMENTS
2020-04-10 09:55:22 +00:00
docker container exec bitwarden tar -czPf /data/BACKUP.attachments.tar.gz /data/attachments
2020-04-09 22:52:11 +00:00
```
2020-04-10 10:08:25 +00:00
the script must be **executabe** - `chmod +x bitwarden-backup-script.sh`
2020-04-09 22:52:11 +00:00
* **cronjob** on the host</br>
`crontab -e` - add new cron job</br>
`0 2 * * * /home/bastard/docker/bitwarden/bitwarden-backup-script.sh` - run it [at 02:00](https://crontab.guru/#0_2_*_*_*)</br>
`crontab -l` - list cronjobs
2020-04-16 22:05:54 +00:00
## Restore the user data
2020-04-09 22:52:11 +00:00
2020-04-10 09:55:22 +00:00
Assuming clean start.
* start the bitwarden container: `docker-compose up -d`
* let it run so it creates its file structure
* down the container `docker-compose down`
* in `bitwarden/bitwarden-data/`</br>
2020-04-10 10:08:25 +00:00
replace `db.sqlite3` with the backup one `BACKUP.bitwarden.db.sqlite3`</br>
2020-04-10 09:55:22 +00:00
replace `attachments` directory with the one from the archive `BACKUP.attachments.tar.gz`
* start the container `docker-compose up -d`
2020-04-09 22:52:11 +00:00