diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-27 23:41:11 -0400 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-27 23:41:11 -0400 |
commit | 9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b (patch) | |
tree | 524479f5d809b1b8fd29f75d7a732be8567bc2a1 /roles/backup-notifications/templates | |
parent | f9d62cc8a792b7b1a2c52a7d8102895473b3c72a (diff) | |
download | oldinfra-9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b.tar.gz oldinfra-9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b.zip |
borg
Diffstat (limited to 'roles/backup-notifications/templates')
-rw-r--r-- | roles/backup-notifications/templates/docker-compose.yml.j2 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/backup-notifications/templates/docker-compose.yml.j2 b/roles/backup-notifications/templates/docker-compose.yml.j2 new file mode 100644 index 0000000..79be2c9 --- /dev/null +++ b/roles/backup-notifications/templates/docker-compose.yml.j2 @@ -0,0 +1,14 @@ +version: "3" + +services: + backup-notify: + image: git.simponic.xyz/simponic/backup-notify:latest + healthcheck: + test: ["CMD", "wget", "--spider", "http://localhost:8080/health"] + interval: 5s + timeout: 10s + retries: 5 + ports: + - "127.0.0.1:31152:8080" + volumes: + - ./db:/app/db |