Skip to content

Commit

Permalink
Merge pull request #44 from coopdevs/docker_user
Browse files Browse the repository at this point in the history
Escape dollar character in docker compose
  • Loading branch information
jordiisidro authored Aug 4, 2022
2 parents df00e38 + 25d35c5 commit 00d2514
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.2.9] - 2022-08-04
### Fixed
- Escape dollar character in docker compose
See [#44](https://github.com/coopdevs/backups_role/pull/44)


## [v1.2.8] - 2022-08-03
### Fixed
- Backup user can manage docker containers
See [#43](https://github.com/coopdevs/backups_role/pull/43)

## [v1.2.7] - 2022-08-03
### Fixed
- Activated restic exporter and exposed with Prometheus format
Expand Down
2 changes: 1 addition & 1 deletion templates/backup-docker-compose.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
container_name: {{ monitoring_backup_exporter_container_name }}
environment:
RESTIC_REPOSITORY: "{{ backups_role_restic_repo_url }}"
RESTIC_PASSWORD: "{{ backups_role_restic_repo_password }}"
RESTIC_PASSWORD: "{{ backups_role_restic_repo_password|replace('$','$$') }}"
B2_ACCOUNT_ID: "{{ backups_role_b2_app_key_id }}"
B2_ACCOUNT_KEY: "{{ backups_role_b2_app_key }}"
restart: always
Expand Down

0 comments on commit 00d2514

Please sign in to comment.