From 497a0e8beed07f148c7dbaeae27f25a9c298f49a Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 22:02:35 +0200 Subject: [PATCH] docs: update Docker Compose image tags to v0.36 (#857) * Initial plan * docs: update Docker image tags to v0.36 Closes nicotsx/zerobyte#856 Agent-Logs-Url: https://github.com/nicotsx/zerobyte/sessions/685fd718-282c-4843-b5bb-082bf8ed0571 Co-authored-by: nicotsx <47644445+nicotsx@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: nicotsx <47644445+nicotsx@users.noreply.github.com> --- README.md | 8 ++++---- apps/docs/content/docs/guides/reverse-proxy.mdx | 2 +- apps/docs/content/docs/installation.mdx | 6 +++--- apps/docs/content/docs/quickstart.mdx | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 37999202..c0af7145 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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped cap_add: @@ -136,7 +136,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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped ports: @@ -175,7 +175,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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped cap_add: @@ -250,7 +250,7 @@ Zerobyte can use [rclone](https://rclone.org/) to support 40+ cloud storage prov ```diff services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped cap_add: diff --git a/apps/docs/content/docs/guides/reverse-proxy.mdx b/apps/docs/content/docs/guides/reverse-proxy.mdx index 72380724..eebfe493 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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped environment: diff --git a/apps/docs/content/docs/installation.mdx b/apps/docs/content/docs/installation.mdx index 0068f235..edba11d2 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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped cap_add: @@ -180,7 +180,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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped ports: @@ -255,7 +255,7 @@ If you use provisioning, Zerobyte can resolve secrets from environment variables ```yaml docker-compose.yml services: zerobyte: - image: ghcr.io/nicotsx/zerobyte:v0.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 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 827aee2c..467cb65a 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.35 + image: ghcr.io/nicotsx/zerobyte:v0.36 container_name: zerobyte restart: unless-stopped # ... other configuration ...