From f879aacfeb95dfd325dcf988732d084e00e92e8a Mon Sep 17 00:00:00 2001 From: joergmschulz Date: Thu, 17 Sep 2020 10:55:16 +0200 Subject: [PATCH] Updated Building your own docker image (markdown) --- Building-your-own-docker-image.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Building-your-own-docker-image.md b/Building-your-own-docker-image.md index 457d5e5..d65372f 100644 --- a/Building-your-own-docker-image.md +++ b/Building-your-own-docker-image.md @@ -15,4 +15,14 @@ To build with Postgresql backend run: ```sh # Build the docker image: docker build -t bitwarden_rs --build-arg DB=postgresql . -``` \ No newline at end of file +``` +in docker-compose.yml it looks like +```... + bitwarden: + # image: bitwardenrs/server-postgresql:latest + image: bitwarden_rs + build: + context: bitwarden_rs + args: + DB: postgresql +```