Self-Hosted Bitwarden On Raspberry Pi
Install Docker # curl -sSL https://get.docker.com | sh Add user(s) to the docker group. The default user would be pi. However, I highly recommend deactivating the default user. # usermod -aG docker pi Reboot and then test docker $ docker run hello-world Install more dependencies # apt-get install -y libffi-dev libssl-dev # apt-get install -y... » read more