Browse Source

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

pull/2622/head
Vince Grassia 3 years ago committed by GitHub
parent
commit
fe2fda5776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      README.md

10
README.md

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

Loading…
Cancel
Save