From 1ac1b51d805ae043a63fdcc064bc4ff9bb33e8c8 Mon Sep 17 00:00:00 2001 From: Mathijs van Veluw Date: Mon, 28 Feb 2022 13:38:55 +0100 Subject: [PATCH] Updated Using Docker Compose (markdown) --- Using-Docker-Compose.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Using-Docker-Compose.md b/Using-Docker-Compose.md index 5a63b29..58b5213 100644 --- a/Using-Docker-Compose.md +++ b/Using-Docker-Compose.md @@ -1,5 +1,14 @@ [Docker Compose](https://docs.docker.com/compose/) is a tool that allows the definition and configuration of multi-container applications. In our case, we want both the vaultwarden server and a proxy to redirect the WebSocket requests to the correct place. +> :warning: :warning: :warning:
+> **Do not use quotes `"` for `environment` variable values them self! This causes issues.
** +> If you need to enclose it within quotes enclose the whole item, variable + value.
+> :no_entry_sign: WRONG:
+> `- DATABASE_URL="/path/to/db.sqlite3"`
+> :heavy_check_mark: OK:
+> `- "DATABASE_URL=/path/to/db.sqlite3"`
+> :warning: :warning: :warning:
+ ## Caddy with HTTP challenge This example assumes that you have [installed](https://docs.docker.com/compose/install/) Docker Compose, that you have a domain name (e.g., `vaultwarden.example.com`) for your vaultwarden instance, and that it will be publicly accessible.