-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Building your own docker image
joergmschulz edited this page Sep 17, 2020
·
6 revisions
Clone the repository, then from the root of the repository run to build with default sqlite backend:
# Build the docker image:
docker build -t bitwarden_rs .
To build with MySQL backend run:
# Build the docker image:
docker build -t bitwarden_rs --build-arg DB=mysql .
To build with Postgresql backend run:
# Build the docker image:
docker build -t bitwarden_rs --build-arg DB=postgresql .
in docker-compose.yml it looks like
bitwarden:
# image: bitwardenrs/server-postgresql:latest
image: bitwarden_rs
build:
context: bitwarden_rs
args:
DB: postgresql
- Which container image to use
- Starting a container
- Updating the vaultwarden image
- Using Docker Compose
- Using Podman
- Building your own docker image
- Building binary
- Pre-built binaries
- Third-party packages
- Deployment examples
- Proxy examples
- Logrotate example
- Overview
- Disable registration of new users
- Disable invitations
- Enabling admin page
- Disable the admin token
- Enabling WebSocket notifications
- Enabling Mobile Client push notification
- Enabling U2F and FIDO2 WebAuthn authentication
- Enabling YubiKey OTP authentication
- Changing persistent data location
- Changing the API request size limit
- Changing the number of workers
- SMTP configuration
- Translating the email templates
- Customize Vaultwarden CSS
- Password hint display
- Disabling or overriding the Vault interface hosting
- Logging
- Creating a systemd service
- Syncing users from LDAP
- Using an alternate base dir (subdir/subpath)
- Other configuration