From 7c6406096f0f802b4978769d0764452ad30ec4ad Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 4 Jun 2026 19:46:10 +0000 Subject: [PATCH] docs: update Docker Compose Zerobyte image tags to v0.38 --- README.md | 8 ++++---- apps/docs/content/docs/guides/provisioning.mdx | 2 +- apps/docs/content/docs/guides/reverse-proxy.mdx | 2 +- apps/docs/content/docs/guides/tailscale.mdx | 2 +- apps/docs/content/docs/installation.mdx | 6 +++--- apps/docs/content/docs/quickstart.mdx | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c111f8c4..39d2887f 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,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.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped cap_add: @@ -156,7 +156,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.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped ports: @@ -195,7 +195,7 @@ If you want to backup a local directory on the same host where Zerobyte is runni ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped cap_add: @@ -270,7 +270,7 @@ Zerobyte can use [rclone](https://rclone.org/) to support 40+ cloud storage prov ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped cap_add: diff --git a/apps/docs/content/docs/guides/provisioning.mdx b/apps/docs/content/docs/guides/provisioning.mdx index 1f7181c5..25fae7ae 100644 --- a/apps/docs/content/docs/guides/provisioning.mdx +++ b/apps/docs/content/docs/guides/provisioning.mdx @@ -99,7 +99,7 @@ Mount the provisioning file and set `PROVISIONING_PATH`: ```yaml docker-compose.yml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 environment: - PROVISIONING_PATH=/config/provisioning.json volumes: diff --git a/apps/docs/content/docs/guides/reverse-proxy.mdx b/apps/docs/content/docs/guides/reverse-proxy.mdx index 8085d4f7..d7d40b47 100644 --- a/apps/docs/content/docs/guides/reverse-proxy.mdx +++ b/apps/docs/content/docs/guides/reverse-proxy.mdx @@ -100,7 +100,7 @@ If you run Traefik as your reverse proxy, add labels to the Zerobyte service in ```yaml docker-compose.yml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped environment: diff --git a/apps/docs/content/docs/guides/tailscale.mdx b/apps/docs/content/docs/guides/tailscale.mdx index 827eafed..294ae398 100644 --- a/apps/docs/content/docs/guides/tailscale.mdx +++ b/apps/docs/content/docs/guides/tailscale.mdx @@ -52,7 +52,7 @@ services: - "4096:4096" zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped # Uncomment if you need remote mounts (NFS/SMB/WebDAV): diff --git a/apps/docs/content/docs/installation.mdx b/apps/docs/content/docs/installation.mdx index 499cd8f8..fe7a4649 100644 --- a/apps/docs/content/docs/installation.mdx +++ b/apps/docs/content/docs/installation.mdx @@ -52,7 +52,7 @@ Create a `docker-compose.yml` file with the following configuration: ```yaml docker-compose.yml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped cap_add: @@ -182,7 +182,7 @@ If you only need to back up locally mounted directories and don't require remote ```yaml docker-compose.yml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped ports: @@ -259,7 +259,7 @@ If you use provisioning, Zerobyte can resolve secrets from environment variables ```yaml docker-compose.yml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped cap_add: diff --git a/apps/docs/content/docs/quickstart.mdx b/apps/docs/content/docs/quickstart.mdx index a258684b..95767742 100644 --- a/apps/docs/content/docs/quickstart.mdx +++ b/apps/docs/content/docs/quickstart.mdx @@ -111,7 +111,7 @@ Update your `docker-compose.yml` to mount the directory you want to backup: ```yaml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.37 + image: ghcr.io/nicotsx/zerobyte:v0.38 container_name: zerobyte restart: unless-stopped # ... other configuration ...