Updated Building your own docker image (markdown)
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
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue