From 46fddb533c0a4933e62298b52222870fed76006c Mon Sep 17 00:00:00 2001 From: Tom Pansino <2768420+tpansino@users.noreply.github.com> Date: Thu, 18 Feb 2021 00:09:17 -0800 Subject: [PATCH] Add sqlite3 to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe34925..061733d 100644 --- a/README.md +++ b/README.md @@ -98,8 +98,8 @@ Along with the Environment Variables from the [Base image](https://hub.docker.co | `BACKUP_LOCATION` | Backup to `FILESYSTEM` or `S3` compatible services like S3, Minio, Wasabi - Default `FILESYSTEM` | | `COMPRESSION` | Use either Gzip `GZ`, Bzip2 `BZ`, XZip `XZ`, ZSTD `ZSTD` or none `NONE` - Default `GZ` | | `COMPRESSION_LEVEL` | Numberical value of what level of compression to use, most allow `1` to `9` except for `ZSTD` which allows for `1` to `19` - Default `3` | -| `DB_TYPE` | Type of DB Server to backup `couch` `influx` `mysql` `pgsql` `mongo` `redis` | -| `DB_HOST` | Server Hostname e.g. `mariadb` | +| `DB_TYPE` | Type of DB Server to backup `couch` `influx` `mysql` `pgsql` `mongo` `redis` `sqlite3` | +| `DB_HOST` | Server Hostname e.g. `mariadb`. For `sqlite3`, full path to DB file e.g. `/backup/db.sqlite3` | | `DB_NAME` | Schema Name e.g. `database` | | `DB_USER` | username for the database - use `root` to backup all MySQL of them. | | `DB_PASS` | (optional if DB doesn't require it) password for the database |