Add more information to README

This commit is contained in:
Ivan R. 2024-11-23 19:10:31 +05:00
parent 7a9c97e4e0
commit f30ddb4b43
Signed by: lumin
GPG key ID: 9B2CA5D12844D4D0

View file

@ -1,3 +1,29 @@
# Postgresql backuper # Postgresql backuper
A small program for creating postgresql backups at certain intervals. A small program for creating postgresql backups at certain intervals.
## Configuration
| Env variable | Description | Default in docker |
| --- | --- | --- |
| BACKUPS_DIR | | /backups |
| PGDUMP_BINARY | | pg_dumpall |
| CUSTOM_ARGS | Arguments passed to PGDUMP_BINARY. Don't use `-f`. | |
| BACKUP_INTERVAL | Time between backups. | 24h |
| RETENTION | Backups older than the RETENTION period will be deleted. | 168h |
The duration must be in a format understood by the golang's `time` package.
## Docker-compose example
```yml
services:
backuper:
image: git.comfycamp.space/lumin/postgresql-backuper
environment:
CUSTOM_ARGS: "-U postgres -h postgresql --no-password"
volumes:
- postgresql-backups:/backups
```