0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-08 23:18:58 +02:00

Updated Building your own docker image (markdown)

joergmschulz 2020-09-17 10:55:16 +02:00
parent 86590c51f5
commit f879aacfeb

@ -15,4 +15,14 @@ To build with Postgresql backend run:
```sh
# 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
```