From c9fd36db72bd612563ebeb51453504290f7cb362 Mon Sep 17 00:00:00 2001 From: Dave Conroy Date: Mon, 6 Nov 2023 11:09:15 -0800 Subject: [PATCH] Fix DEFAULT_MYSQL table --- Dockerfile | 1 - README.md | 23 +++++++++++------------ 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c734fd..eb62348 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,6 @@ ENV INFLUX1_CLIENT_VERSION=1.8.0 \ AWS_CLI_VERSION=1.29.78 \ CONTAINER_ENABLE_MESSAGING=FALSE \ CONTAINER_ENABLE_MONITORING=TRUE \ - CONTAINER_PROCESS_RUNAWAY_PROTECTOR=FALSE \ IMAGE_NAME="tiredofit/db-backup" \ IMAGE_REPO_URL="https://github.com/tiredofit/docker-db-backup/" diff --git a/README.md b/README.md index 269efac..e35e98b 100644 --- a/README.md +++ b/README.md @@ -258,18 +258,17 @@ If these are set and no other defaults or variables are set explicitly, they wil ###### MariaDB/MySQL -| Variable | Description | Default | `_FILE` | -| ---------------------------------- | --------------------------------------------------------------------------------------------------------- | ------- | ------- | -| `DEFAULT_PORT` | MySQL / MariaDB Port | `3306` | x | -| `DEFAULT_EXTRA_BACKUP_OPTS` | Pass extra arguments to the backup command only, add them here e.g. `--extra-command` | | | -| `DEFAULT_EXTRA_ENUMERATION_OPTS` | Pass extra arguments to the database enumeration command only, add them here e.g. `--extra-command` | | | -| `DEFAULT_EXTRA_OPTS` | Pass extra arguments to the backup and database enumeration command, add them here e.g. `--extra-command` | | | -| `DEFAULT_MYSQL_EVENTS` | Backup Events | `TRUE` | | -| `DEFAULT_MYSQL_MAX_ALLOWED_PACKET` | Max allowed packet | `512M` | | -| `DEFAULT_MYSQL_SINGLE_TRANSACTION` | Backup in a single transaction | `TRUE` | | -| `DEFAULT_MYSQL_STORED_PROCEDURES` | Backup stored procedures | `TRUE` | | -| `DEFAULT_MYSQL_ENABLE_TLS` | Enable TLS functionality | `FALSE` | | - +| Variable | Description | Default | `_FILE` | +| ---------------------------------- | --------------------------------------------------------------------------------------------------------- | ------------------------- | ------- | +| `DEFAULT_PORT` | MySQL / MariaDB Port | `3306` | x | +| `DEFAULT_EXTRA_BACKUP_OPTS` | Pass extra arguments to the backup command only, add them here e.g. `--extra-command` | | | +| `DEFAULT_EXTRA_ENUMERATION_OPTS` | Pass extra arguments to the database enumeration command only, add them here e.g. `--extra-command` | | | +| `DEFAULT_EXTRA_OPTS` | Pass extra arguments to the backup and database enumeration command, add them here e.g. `--extra-command` | | | +| `DEFAULT_MYSQL_EVENTS` | Backup Events | `TRUE` | | +| `DEFAULT_MYSQL_MAX_ALLOWED_PACKET` | Max allowed packet | `512M` | | +| `DEFAULT_MYSQL_SINGLE_TRANSACTION` | Backup in a single transaction | `TRUE` | | +| `DEFAULT_MYSQL_STORED_PROCEDURES` | Backup stored procedures | `TRUE` | | +| `DEFAULT_MYSQL_ENABLE_TLS` | Enable TLS functionality | `FALSE` | | | `DEFAULT_MYSQL_TLS_VERIFY` | (optional) If using TLS (by means of MYSQL_TLS_* variables) verify remote host | `FALSE` | | | `DEFAULT_MYSQL_TLS_VERSION` | What TLS `v1.1` `v1.2` `v1.3` version to utilize | `TLSv1.1,TLSv1.2,TLSv1.3` | | | `DEFAULT_MYSQL_TLS_CA_FILE` | Filename to load custom CA certificate for connecting via TLS | `/etc/ssl/cert.pem` | x |