Weekly full backups via pg_basebackup and continuous WAL archiving for point-in-time recovery, running as Docker Compose services. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
4 lines
139 B
Bash
4 lines
139 B
Bash
#!/bin/bash
|
|
# Allow replication connections from the Docker network
|
|
echo "host replication all all scram-sha-256" >> "$PGDATA/pg_hba.conf"
|