Updated Building your own docker image (markdown)

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

@ -16,3 +16,13 @@ To build with Postgresql backend run:
# Build the docker image: # Build the docker image:
docker build -t bitwarden_rs --build-arg DB=postgresql . 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
```