Compare commits

...

3 commits

4 changed files with 14 additions and 1 deletions
playbooks
apps
dependencies

View file

@ -1,3 +1,3 @@
#!/bin/bash
set -euo pipefail
/usr/bin/rclone copy --transfers=10 --checksum pcloud:/ backblaze-pcloud-backup:gaugendre-pcloud-backup/
/usr/bin/rclone copy --stats=30m --stats-log-level=NOTICE --transfers=10 --checksum pcloud:/ backblaze-pcloud-backup:gaugendre-pcloud-backup/

View file

@ -17,3 +17,9 @@ services:
volumes:
- ./db_data:/var/lib/postgresql/data
mem_limit: 512m
healthcheck:
test: ["CMD", "pg_isready", "-d", "miniflux"]
interval: 10s
timeout: 10s
retries: 5
start_period: 80s

View file

@ -22,3 +22,9 @@ services:
POSTGRES_DB: "manuels"
volumes:
- ./db_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-d", "manuels"]
interval: 10s
timeout: 10s
retries: 5
start_period: 80s

View file

@ -3,3 +3,4 @@
- import_playbook: 01-setup-deps.yaml # noqa: name[play]
- import_playbook: bat.yaml # noqa: name[play]
- import_playbook: caddy.yaml # noqa: name[play]
- import_playbook: rclone.yaml # noqa: name[play]