This article will walk you through how to install and deploy Bitwarden to your own server. Because Bitwarden is a cross platform application, you can install and deploy it on Linux, macOS, and Windows machines.
Install & deploy Bitwarden.
Bash
curl -s -o bitwarden.sh \
https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.sh \
&& sudo chmod u+x bitwarden.sh
./bitwarden.sh install
./bitwarden.sh start
./bitwarden.sh updatedb
PowerShell
Invoke-RestMethod -OutFile bitwarden.ps1 `
-Uri https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.ps1
.\bitwarden.ps1 -install
.\bitwarden.ps1 -start
.\bitwarden.ps1 -updatedb
Adjust additional configuration settings in ./bwdata/env/global.override.env and restart.
Bash
./bitwarden.sh restart
PowerShell
.\bitwarden.ps1 -restart
If you are looking for a quality provider with affordable prices, we recommend:
By default, Bitwarden will be served through ports 80 (http) and 443 (https) on the localhost machine. You should open these ports so that Bitwarden can be accessed from within and/or outside of the network. You can choose different ports during installation if you like.
It you are serving Bitwarden to the outside world you will need to configure a domain name with DNS records that point to your host machine (ex. bitwarden.company.com). You should configure this domain before beginning your Bitwarden installation.
Alternatively, if you are only testing you can install Bitwarden to the “localhost” domain.
Bitwarden will be deployed and ran on your machine using an array of Docker containers. Bitwarden will work equally well with Docker Community (free) and Enterprise editions. You should evaluate which edition is best for your installation. Additionally, deployment of these containers is orchestrated through the use of Docker Compose. Docker and Docker Compose must first be installed on your machine before beginning a Bitwarden installation.
See the following official Docker documentation for more information:
Some Docker installations such as Windows and macOS already come with Docker Compose installed.
For reference, you can find the official Bitwarden images hosted on Docker Hub at https://hub.docker.com/u/bitwarden/.
We’ve made installing Bitwarden very simple. Depending in your environment (non-Windows vs. Windows) we provide Bash (Linux and macOS) and PowerShell (Windows) scripts to aide in installing and managing your bitwarden installation. The following steps will include references for both Bash and PowerShell.
Download the main Bitwarden script to your machine in the desired location:
All Bitwarden assets will be installed in the ./bwdata directory relative to where the main Bitwarden script resides.
Bash
curl -s -o bitwarden.sh \
https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.sh \
&& sudo chmod u+x bitwarden.sh
PowerShell
Invoke-RestMethod -OutFile bitwarden.ps1 `
-Uri https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.ps1
Start the installer:
Bash
./bitwarden.sh install
PowerShell
.\bitwarden.ps1 -install
Complete the prompts in the installer.
SSL Certificate
Bitwarden can generate and maintain renewal of a trusted SSL certificate for your domain for completely free provided by Let’s Encrypt and Certbot. Certificate renewal checks occur each time bitwarden is restarted.
./bwdata/ssl/your.domain.com directory:
cat domain.crt ca.crt >> certificate.crt. See here for more information.dhparam.pem by using OpenSSL with openssl dhparam -out ./dhparam.pem 2048.Installation Id/Key
Each Bitwarden installation requires a unique installation id and installation key. The installation id and key is used to:
You should not share your installation id or installation key across multiple Bitwarden installations. They should be treated as secrets.
You can obtain an installation id and key from https://bitwarden.com/host.
Push Notifications
If you would like to take advantage of having push notifications automatically keep your Bitwarden client applications synced in real time you can choose to use the bitwarden push notification relay service. This relay service is provided by external Bitwarden servers. You should ensure that your machine can communicate with the https://push.bitwarden.com endpoint. Your Bitwarden installation will POST non-sensitive data (reference ids) to the push relay service which will then notify the Bitwarden client applications to “phone home” back to your installation for an update.
The use of the push notification relay service is optional. If you do not use this service you will need to keep your client applications in sync manually.
Some features such as a SMTP mail server settings, YubiKey OTP API credentials, etc. are not configured by the installer. You can find the environment file for these settings (and all others) in the following location: ./bwdata/env/global.override.env. Edit this file and REPLACE the placeholders values for them.
Example:
globalSettings__yubico__clientId=294620155
globalSettings__yubico__key=owdez88RdxVZuGbZ4fv
globalSettings__mail__smtp__host=smtp.sendgrid.net
globalSettings__mail__smtp__username=apikey
globalSettings__mail__smtp__password=SG.YOUR.API_KEY
globalSettings__mail__smtp__ssl=true
globalSettings__mail__smtp__port=587
globalSettings__mail__smtp__useDefaultCredentials=false
If you plan to use YubiKeys for two-step login, you can get your YubiKey client id and key at https://upgrade.yubico.com/getapikey/.
Once you’ve completed installing and configuring your Bitwarden installation you can start it up:
The first time you start Bitwarden it may take some time as it downloads all of the images from Docker Hub.
Bash
./bitwarden.sh start
PowerShell
.\bitwarden.ps1 -start
You can then verify that all containers are up and running correctly:
docker ps
Finally, you need to initialize and update the Bitwarden database:
Bash
./bitwarden.sh updatedb
PowerShell
.\bitwarden.ps1 -updatedb
Congratulations! Bitwarden is now up and running at https://your.domain.com. Visit the web vault in your web browser to confirm. You should register a new account and log in.
The Bitwarden main script (bitwarden.sh or bitwarden.ps1) has the following commands available:
PowerShell users will run the commands with a prefixed - (switch). For example .\bitwarden.ps1 -start.
| Command | Description |
|---|---|
| install | Start the installer. |
| start | Start all containers. |
| restart | Restart all containers (same as start). |
| stop | Stop all containers. |
| updatedb | Update/initialize the database. |
| update | Update all containers and the database. |
| updateself | Update this main script. |
Rate this article:
Want to talk to a human?
Send Us An Email