1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-27 13:05:23 +01:00

Update README example commands for self-host scripts (#2620)

This commit is contained in:
Vince Grassia 2023-01-24 13:05:36 -05:00 committed by GitHub
parent 0e32cb944a
commit fe2fda5776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@
</a> </a>
</p> </p>
------------------- ---
The Bitwarden Server project contains the APIs, database, and other core infrastructure items needed for the "backend" of all bitwarden client applications. The Bitwarden Server project contains the APIs, database, and other core infrastructure items needed for the "backend" of all bitwarden client applications.
@ -40,13 +40,13 @@ Full documentation for deploying Bitwarden with Docker can be found in our help
- [Docker](https://www.docker.com/community-edition#/download) - [Docker](https://www.docker.com/community-edition#/download)
- [Docker Compose](https://docs.docker.com/compose/install/) (already included with some Docker installations) - [Docker Compose](https://docs.docker.com/compose/install/) (already included with some Docker installations)
*These dependencies are free to use.* _These dependencies are free to use._
### Linux & macOS ### Linux & macOS
``` ```
curl -s -o bitwarden.sh \ curl -s -L -o bitwarden.sh \
https://raw.githubusercontent.com/bitwarden/server/master/scripts/bitwarden.sh \ "https://func.bitwarden.com/api/dl/?app=self-host&platform=linux" \
&& chmod +x bitwarden.sh && chmod +x bitwarden.sh
./bitwarden.sh install ./bitwarden.sh install
./bitwarden.sh start ./bitwarden.sh start
@ -56,7 +56,7 @@ curl -s -o bitwarden.sh \
``` ```
Invoke-RestMethod -OutFile bitwarden.ps1 ` Invoke-RestMethod -OutFile bitwarden.ps1 `
-Uri https://raw.githubusercontent.com/bitwarden/server/master/scripts/bitwarden.ps1 -Uri "https://func.bitwarden.com/api/dl/?app=self-host&platform=windows"
.\bitwarden.ps1 -install .\bitwarden.ps1 -install
.\bitwarden.ps1 -start .\bitwarden.ps1 -start
``` ```