From bec6894033aa3075bfc86c27a4073b7d2c54d7e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Proxymiity=20=E2=98=86?= Date: Thu, 29 Apr 2021 20:45:51 +0200 Subject: [PATCH] Renamed values according to the README --- Pre-built-binaries.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Pre-built-binaries.md b/Pre-built-binaries.md index a3a5897..5bb8daf 100644 --- a/Pre-built-binaries.md +++ b/Pre-built-binaries.md @@ -5,10 +5,10 @@ vaultwarden doesn't currently provide standalone binaries as a separate download Assuming you want to extract binaries for the platform you're running on: ``` docker pull vaultwarden/server:alpine -docker create --name bwrs vaultwarden/server:alpine -docker cp bwrs:/vaultwarden . -docker cp bwrs:/web-vault . -docker rm bwrs +docker create --name vwrs vaultwarden/server:alpine +docker cp vwrs:/vaultwarden . +docker cp vwrs:/web-vault . +docker rm vwrs ``` If you want binaries for a different platform (for example, you only have Docker installed on your x86-64 machine, but you want to run vaultwarden on a Raspberry Pi), add the `--platform` option to the `docker pull` command: @@ -25,8 +25,8 @@ docker pull --platform linux/arm/v7 vaultwarden/server:alpine If you can't or don't want to install Docker, you can use the [docker-image-extract](https://github.com/jjlin/docker-image-extract) script to pull and extract a Docker image. For example, to pull and extract the x86-64 image: ``` -$ mkdir bwrs-image -$ cd bwrs-image +$ mkdir vwrs-image +$ cd vwrs-image $ wget https://raw.githubusercontent.com/jjlin/docker-image-extract/main/docker-image-extract $ chmod +x docker-image-extract $ ./docker-image-extract vaultwarden/server:alpine