From 1ea5c042f5140df261b552dc45aecce58b7ce87c Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Wed, 17 Dec 2025 07:27:47 +0100 Subject: [PATCH] docs(readme): remove section about secrets and env (not released yet) --- README.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/README.md b/README.md index 5a3e002e..87289812 100644 --- a/README.md +++ b/README.md @@ -148,23 +148,6 @@ Repositories are optimized for storage efficiency and data integrity, leveraging To create a repository, navigate to the "Repositories" section in the web interface and click on "Create repository". Fill in the required details such as repository name, type, and connection settings. -## Secret references (env:// and file://) - -Any field that is normally stored encrypted in Zerobyte (passwords, tokens, access keys, etc.) also accepts secret references. - -- `env://VAR_NAME` reads the value from `process.env.VAR_NAME` inside the Zerobyte container. -- `file://secret_name` reads the value from `/run/secrets/secret_name` (Docker secrets). - -If you enter a normal value (not starting with `env://` or `file://`), Zerobyte will encrypt it before storing it in the database (values will look like `encv1:...`). - -Examples: - -In the web UI, enter the following values in the corresponding fields: - -| Field | Value to enter | Description | -|-------------------|------------------------------|---------------------------------------------| -| password | `env://SMB_PASSWORD` | SMB volume password from an environment variable | -| secretAccessKey | `file://s3-secret-access-key`| S3 secret access key from a Docker secret | ### Using rclone for cloud storage Zerobyte can use [rclone](https://rclone.org/) to support 40+ cloud storage providers including Google Drive, Dropbox, OneDrive, Box, pCloud, Mega, and many more. This gives you the flexibility to store your backups on virtually any cloud storage service.