From 2348a86f50d655c1b2cbe34ea13ac47f48ac972d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Proxymiity=20=E2=98=86?= Date: Fri, 30 Apr 2021 00:09:39 +0200 Subject: [PATCH] renamed docker image --- Changing-the-API-request-size-limit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changing-the-API-request-size-limit.md b/Changing-the-API-request-size-limit.md index 3f0af6a..fe0541e 100644 --- a/Changing-the-API-request-size-limit.md +++ b/Changing-the-API-request-size-limit.md @@ -3,7 +3,7 @@ By default the API calls are limited to 10MB. This should be sufficient for most To set the limit, you can use the `ROCKET_LIMITS` variable. Example here shows 10MB limit for posted json in the body (this is the default): ```sh -docker run -d --name bitwarden \ +docker run -d --name vaultwarden \ -e ROCKET_LIMITS={json=10485760} \ -v /vw-data/:/data/ \ -p 80:80 \