From 3bce01a13f1e49e74f3303040cad27209b9443f2 Mon Sep 17 00:00:00 2001 From: Nils Domrose Date: Mon, 3 Jun 2019 09:40:07 +0200 Subject: [PATCH] Updated Building your own image (markdown) --- Building-your-own-image.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Building-your-own-image.md b/Building-your-own-image.md index a820f5a..2d0c2cc 100644 --- a/Building-your-own-image.md +++ b/Building-your-own-image.md @@ -1,6 +1,12 @@ -Clone the repository, then from the root of the repository run: +Clone the repository, then from the root of the repository run to build with default sqlite backend: ```sh # Build the docker image: docker build -t bitwarden_rs . -``` \ No newline at end of file +``` + +To build with MySQL backend run: +```sh +# Build the docker image: +docker build -t bitwarden_rs --build-arg DB=sqlite . +``` \ No newline at end of file