0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-16 02:48:27 +02:00

Renamed values according to the README

Proxymiity ☆ 2021-04-29 20:45:51 +02:00
parent 2ad7fe74e7
commit bec6894033

@ -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