0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-09 07:29:11 +02:00

Updated Using Docker Compose (markdown)

Mathijs van Veluw 2022-02-28 13:38:55 +01:00
parent 0579c94a18
commit 1ac1b51d80

@ -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: <br>
> **Do not use quotes `"` for `environment` variable values them self! This causes issues. <br>**
> If you need to enclose it within quotes enclose the whole item, variable + value. <br>
> :no_entry_sign: WRONG: <br>
> `- DATABASE_URL="/path/to/db.sqlite3"` <br>
> :heavy_check_mark: OK: <br>
> `- "DATABASE_URL=/path/to/db.sqlite3"` <br>
> :warning: :warning: :warning: <br>
## 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.