Skip to content

Commit 1659e34

Browse files
committed
Release 3.7.5 - See CHANGELOG.md
1 parent a8df7a2 commit 1659e34

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.7.5 2023-03-02 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- Add support for Docker Swarm mode Secrets for BLOBXFER_STORAGE_ACCOUNT_*_FILE
5+
6+
17
## 3.7.4 2023-02-22 <gbe0@github>
28

39
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ The following directories are used for configuration and can be mapped for persi
123123

124124
#### Base Images used
125125

126-
This image relies on an [Alpine Linux](https://hub.docker.com/r/tiredofit/alpine) or [Debian Linux](https://hub.docker.com/r/tiredofit/debian) base image that relies on an [init system](https://github.com/just-containers/s6-overlay) for added capabilities. Outgoing SMTP capabilities are handlded via `msmtp`. Individual container performance monitoring is performed by [zabbix-agent](https://zabbix.org). Additional tools include: `bash`,`curl`,`less`,`logrotate`, `nano`,`vim`.
126+
This image relies on an [Alpine Linux](https://hub.docker.com/r/tiredofit/alpine) or [Debian Linux](https://hub.docker.com/r/tiredofit/debian) base image that relies on an [init system](https://github.com/just-containers/s6-overlay) for added capabilities. Outgoing SMTP capabilities are handlded via `msmtp`. Individual container performance monitoring is performed by [zabbix-agent](https://zabbix.org). Additional tools include: `bash`,`curl`,`less`,`logrotate`, `nano`.
127127

128128
Be sure to view the following repositories to understand all the customizable options:
129129

install/assets/functions/10-db-backup

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ bootstrap_variables() {
104104
file_env 'S3_KEY_ID'
105105
file_env 'S3_KEY_SECRET'
106106
fi
107+
108+
if [ "${BACKUP_LOCATION,,}" = "blobxfer" ] && [ -n "${BLOBXFER_STORAGE_ACCOUNT_FILE}" ] && [ -n "${BLOBXFER_STORAGE_ACCOUNT_KEY_FILE}" ]; then
109+
file_env 'BLOBXFER_STORAGE_ACCOUNT_FILE'
110+
file_env 'BLOBXFER_STORAGE_ACCOUNT_KEY_FILE'
111+
fi
107112
}
108113

109114
backup_couch() {

0 commit comments

Comments
 (0)