Rebrand documentation

This commit is contained in:
2024-08-11 05:24:57 +08:00
parent 820a9db6b2
commit 6182bc3e03
3 changed files with 8 additions and 8 deletions

View File

@@ -37,10 +37,10 @@ For **stable** versions instead of nightly or development please read **README**
| tag | Branch | Example | Description |
| - | - | - | - |
| `latest` | production | `ghcr.io/wg-easy/wg-easy:latest` or `ghcr.io/wg-easy/wg-easy` | stable as possbile get bug fixes quickly when needed, deployed against `production`. |
| `13` | production | `ghcr.io/wg-easy/wg-easy:13` | same as latest, stick to a version tag. |
| `nightly` | master | `ghcr.io/wg-easy/wg-easy:nightly` | mostly unstable gets frequent package and code updates, deployed against `master`. |
| `development` | pull requests | `ghcr.io/wg-easy/wg-easy:development` | used for development, testing code from PRs before landing into `master`. |
| `latest` | production | `docker.io/rusian/wg-easy:latest` or `docker.io/rusian/wg-easy` | stable as possbile get bug fixes quickly when needed, deployed against `production`. |
| `13` | production | `docker.io/rusian/wg-easy:13` | same as latest, stick to a version tag. |
| `nightly` | master | `docker.io/rusian/wg-easy:nightly` | mostly unstable gets frequent package and code updates, deployed against `master`. |
| `development` | pull requests | `docker.io/rusian/wg-easy:development` | used for development, testing code from PRs before landing into `master`. |
## Installation
@@ -77,7 +77,7 @@ To automatically install & run wg-easy, simply run:
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
--sysctl="net.ipv4.ip_forward=1" \
--restart unless-stopped \
ghcr.io/wg-easy/wg-easy
docker.io/rusian/wg-easy
```
> 💡 Replace `YOUR_SERVER_IP` with your WAN IP, or a Dynamic DNS hostname.
@@ -134,7 +134,7 @@ To update to the latest version, simply run:
```bash
docker stop wg-easy
docker rm wg-easy
docker pull ghcr.io/wg-easy/wg-easy
docker pull docker.io/rusian/wg-easy
```
And then run the `docker run -d \ ...` command above again.