File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ v1.2.9] - 2022-08-04
8
+ ### Fixed
9
+ - Escape dollar character in docker compose
10
+ See [ #44 ] ( https://github.com/coopdevs/backups_role/pull/44 )
11
+
12
+
13
+ ## [ v1.2.8] - 2022-08-03
14
+ ### Fixed
15
+ - Backup user can manage docker containers
16
+ See [ #43 ] ( https://github.com/coopdevs/backups_role/pull/43 )
17
+
7
18
## [ v1.2.7] - 2022-08-03
8
19
### Fixed
9
20
- Activated restic exporter and exposed with Prometheus format
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
6
6
container_name: {{ monitoring_backup_exporter_container_name }}
7
7
environment:
8
8
RESTIC_REPOSITORY: "{{ backups_role_restic_repo_url }}"
9
- RESTIC_PASSWORD: "{{ backups_role_restic_repo_password }}"
9
+ RESTIC_PASSWORD: "{{ backups_role_restic_repo_password|replace('$','$$') }}"
10
10
B2_ACCOUNT_ID: "{{ backups_role_b2_app_key_id }}"
11
11
B2_ACCOUNT_KEY: "{{ backups_role_b2_app_key }}"
12
12
restart: always
You can’t perform that action at this time.
0 commit comments