docs: update readme version

This commit is contained in:
Nicolas Meienberger 2026-03-23 21:07:17 +01:00
parent 4c928cbc33
commit 7ef211ddd5
2 changed files with 7 additions and 5 deletions

View file

@ -40,7 +40,7 @@ In order to run Zerobyte, you need to have Docker and Docker Compose installed o
```yaml
services:
zerobyte:
image: ghcr.io/nicotsx/zerobyte:v0.30
image: ghcr.io/nicotsx/zerobyte:v0.32
container_name: zerobyte
restart: unless-stopped
cap_add:
@ -121,7 +121,7 @@ If you only need to back up locally mounted folders and don't require remote sha
```yaml
services:
zerobyte:
image: ghcr.io/nicotsx/zerobyte:v0.30
image: ghcr.io/nicotsx/zerobyte:v0.32
container_name: zerobyte
restart: unless-stopped
ports:
@ -160,7 +160,7 @@ If you want to track a local directory on the same server where Zerobyte is runn
```diff
services:
zerobyte:
image: ghcr.io/nicotsx/zerobyte:v0.30
image: ghcr.io/nicotsx/zerobyte:v0.32
container_name: zerobyte
restart: unless-stopped
cap_add:
@ -235,7 +235,7 @@ Zerobyte can use [rclone](https://rclone.org/) to support 40+ cloud storage prov
```diff
services:
zerobyte:
image: ghcr.io/nicotsx/zerobyte:v0.30
image: ghcr.io/nicotsx/zerobyte:v0.32
container_name: zerobyte
restart: unless-stopped
cap_add:

View file

@ -704,5 +704,7 @@ function compareNodes(a: Node, b: Node): number {
return a.kind === "folder" ? -1 : 1;
}
return a.name.localeCompare(b.name);
if (a.name < b.name) return -1;
if (a.name > b.name) return 1;
return 0;
}