mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-16 07:26:35 +00:00
Consider older setups
This commit is contained in:
@@ -18,6 +18,21 @@ docker compose cp -a netbird-server:/var/lib/netbird/ backup/
|
|||||||
docker compose start netbird-server
|
docker compose start netbird-server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Older Setup (Separate Containers)
|
||||||
|
|
||||||
|
If your deployment uses the older setup with separate containers (`management`, `signal`, `relay`, `coturn`), back up the configuration files:
|
||||||
|
```bash
|
||||||
|
mkdir backup
|
||||||
|
cp docker-compose.yml Caddyfile dashboard.env management.json relay.env backup/
|
||||||
|
```
|
||||||
|
|
||||||
|
To save the Management service database:
|
||||||
|
```bash
|
||||||
|
docker compose stop management
|
||||||
|
docker compose cp -a management:/var/lib/netbird/ backup/
|
||||||
|
docker compose start management
|
||||||
|
```
|
||||||
|
|
||||||
## Get In Touch
|
## Get In Touch
|
||||||
|
|
||||||
Feel free to ping us on [Slack](/slack-url) if you have any questions.
|
Feel free to ping us on [Slack](/slack-url) if you have any questions.
|
||||||
|
|||||||
@@ -57,6 +57,18 @@ To upgrade NetBird to the latest version:
|
|||||||
For upgrades from older versions (pre-v0.26.0), see the [Legacy upgrade notes](#legacy-self-hosting-with-zitadel-idp).
|
For upgrades from older versions (pre-v0.26.0), see the [Legacy upgrade notes](#legacy-self-hosting-with-zitadel-idp).
|
||||||
</Note>
|
</Note>
|
||||||
|
|
||||||
|
### Legacy Setup (Separate Containers)
|
||||||
|
|
||||||
|
If your deployment uses the older setup with separate containers (`management`, `signal`, `relay`, `coturn`), pull and recreate those containers instead:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker compose pull management dashboard signal relay
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker compose up -d --force-recreate management dashboard signal relay
|
||||||
|
```
|
||||||
|
|
||||||
## Get In Touch
|
## Get In Touch
|
||||||
|
|
||||||
Feel free to ping us on [Slack](/slack-url) if you have any questions.
|
Feel free to ping us on [Slack](/slack-url) if you have any questions.
|
||||||
|
|||||||
Reference in New Issue
Block a user