mirror of
https://github.com/fosrl/docs-v2.git
synced 2026-09-17 19:39:09 +02:00
39 lines
956 B
Plaintext
39 lines
956 B
Plaintext
---
|
|
title: "Update Sites"
|
|
description: "Update your site to the latest version"
|
|
---
|
|
The update process depends on how you originally installed the site.
|
|
|
|
Find the latest version in the [GitHub releases](https://github.com/fosrl/cli/releases).
|
|
|
|
## Docker Installation
|
|
|
|
Update the image version in your `docker-compose.yml`:
|
|
|
|
```yaml title="docker-compose.yml"
|
|
services:
|
|
pangolin-site:
|
|
image: fosrl/pangolin-cli:{version} # Replace {version} with the latest version tag
|
|
# ... rest of config
|
|
```
|
|
|
|
Then pull and restart:
|
|
|
|
```bash
|
|
docker compose pull pangolin-site
|
|
docker compose up -d pangolin-site
|
|
```
|
|
|
|
## Binary Installation
|
|
|
|
### Auto Installer (Recommended)
|
|
|
|
If you used the auto installer, simply run it again.
|
|
|
|
```bash
|
|
curl -fsSL https://static.pangolin.net/get-cli.sh | bash
|
|
```
|
|
|
|
### Manual Installation
|
|
|
|
Download the latest binary for your system from [GitHub releases](https://github.com/fosrl/cli/releases) and replace your existing binary. |