2025-01-23 08:06:55 +01:00
Starting from v2, each [release ](https://github.com/h44z/wg-portal/releases ) includes compiled binaries for supported platforms.
These binary versions can be manually downloaded and installed.
## Download
2025-05-04 11:00:12 +02:00
Make sure that you download the correct binary for your architecture. The available binaries are:
- `wg-portal_linux_amd64` - Linux x86_64
- `wg-portal_linux_arm64` - Linux ARM 64-bit
- `wg-portal_linux_arm_v7` - Linux ARM 32-bit
2025-01-23 08:06:55 +01:00
With `curl` :
2025-05-04 11:00:12 +02:00
```shell
curl -L -o wg-portal https://github.com/h44z/wg-portal/releases/download/${WG_PORTAL_VERSION}/wg-portal_linux_amd64
```
2025-01-23 08:06:55 +01:00
With `wget` :
2025-05-04 11:00:12 +02:00
```shell
wget -O wg-portal https://github.com/h44z/wg-portal/releases/download/${WG_PORTAL_VERSION}/wg-portal_linux_amd64
```
2025-01-23 08:06:55 +01:00
with `gh cli` :
2025-05-04 11:00:12 +02:00
```shell
gh release download ${WG_PORTAL_VERSION} --repo h44z/wg-portal --output wg-portal --pattern '*amd64'
```
2025-01-23 08:06:55 +01:00
## Install
```shell
sudo mkdir -p /opt/wg-portal
sudo install wg-portal /opt/wg-portal/
```
2025-05-04 11:00:12 +02:00
## Unreleased versions (master branch builds)
Unreleased versions can be fetched directly from the artifacts section of the [GitHub Workflow ](https://github.com/h44z/wg-portal/actions/workflows/docker-publish.yml?query=branch%3Amaster ).
2025-01-23 08:06:55 +01:00