mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fix broken links to binaries in docs (#1277)
* Update 8-Updating-Fleet.md * Update 8-Updating-Fleet.md * Update 3-Example-deployment-scenarios.md
This commit is contained in:
parent
05ba38ce2f
commit
77f5b60b52
2 changed files with 5 additions and 23 deletions
|
|
@ -18,29 +18,11 @@ As with any enterprise software update, it's a good idea to back up your MySQL d
|
|||
|
||||
## Updating the Fleet binary
|
||||
|
||||
Follow the binary update instructions corresponding to the original installation method used to install Fleet.
|
||||
To update to a new version of Fleet, follow the [same binary install instructions](https://github.com/fleetdm/fleet/blob/main/docs/2-Deploying/1-Installation.md) from the original installation method you used to install Fleet.
|
||||
|
||||
### Raw binaries
|
||||
|
||||
Download the latest raw Fleet binaries:
|
||||
|
||||
```
|
||||
curl -O https://github.com/fleetdm/fleet/releases/latest/download/fleet.zip
|
||||
```
|
||||
|
||||
Unzip the binaries for your platform:
|
||||
|
||||
```
|
||||
# For a Darwin compatible binary
|
||||
unzip fleet.zip 'darwin/*' -d fleet
|
||||
./fleet/darwin/fleet --help
|
||||
|
||||
# For a Linux compatible binary
|
||||
unzip fleet.zip 'linux/*' -d fleet
|
||||
./fleet/linux/fleet --help
|
||||
```
|
||||
|
||||
Replace the existing Fleet binary with the newly unzipped binary.
|
||||
Download, unzip, and replace the existing Fleet binary with the newly unzipped binary.
|
||||
|
||||
### Docker container
|
||||
|
||||
|
|
|
|||
|
|
@ -48,10 +48,10 @@ vagrant ssh
|
|||
|
||||
### Installing Fleet
|
||||
|
||||
To install Fleet, run the following:
|
||||
To [install Fleet](https://github.com/fleetdm/fleet/blob/main/docs/2-Deploying/1-Installation.md), download, unzip, and move the latest Fleet binary to your desired install location.
|
||||
|
||||
```
|
||||
wget https://github.com/fleetdm/fleet/releases/latest/download/fleet.zip
|
||||
For example, after downloading:
|
||||
```sh
|
||||
unzip fleet.zip 'linux/*' -d fleet
|
||||
sudo cp fleet/linux/fleet* /usr/bin/
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue