16 lines
422 B
Bash
16 lines
422 B
Bash
# Database Credentials
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=db
|
|
|
|
# Timezone (Matches your system, e.g., Europe/Chisinau or America/New_York)
|
|
TZ=Europe/Chisinau
|
|
|
|
# Backup Settings
|
|
# Options: @hourly, @daily, @weekly, @monthly
|
|
# BACKUP_SCHEDULE=@daily
|
|
# Cron Schedule: Minute Hour Day Month Day_of_Week
|
|
# This example runs every night at 03:15 AM
|
|
BACKUP_SCHEDULE="0 1 * * *"
|
|
BACKUP_RETENTION_DAYS=30
|