Skip to content

Commit 00d2514

Browse files
authored
Merge pull request #44 from coopdevs/docker_user
Escape dollar character in docker compose
2 parents df00e38 + 25d35c5 commit 00d2514

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

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+
718
## [v1.2.7] - 2022-08-03
819
### Fixed
920
- Activated restic exporter and exposed with Prometheus format

Diff for: templates/backup-docker-compose.yml.j2

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
container_name: {{ monitoring_backup_exporter_container_name }}
77
environment:
88
RESTIC_REPOSITORY: "{{ backups_role_restic_repo_url }}"
9-
RESTIC_PASSWORD: "{{ backups_role_restic_repo_password }}"
9+
RESTIC_PASSWORD: "{{ backups_role_restic_repo_password|replace('$','$$') }}"
1010
B2_ACCOUNT_ID: "{{ backups_role_b2_app_key_id }}"
1111
B2_ACCOUNT_KEY: "{{ backups_role_b2_app_key }}"
1212
restart: always

0 commit comments

Comments
 (0)