An open API service indexing awesome lists of open source software.

https://github.com/mbajur/docker-backup

Backup docker service using backup gem
https://github.com/mbajur/docker-backup

backup docker ruby

Last synced: about 2 months ago
JSON representation

Backup docker service using backup gem

Awesome Lists containing this project

README

          

# docker-backup
Backup docker service using backup gem

## Available ENV variables

| Variable | Description | Default |
|---|---|---|
| `DESCRIPTION` | Description of a backup model | `nil` |
| `STORAGE_LOCAL_PATH` | Path of where to store the backups | `~/backups` |
| `STORAGE_LOCAL_KEEP` | How much backups should be kept | `5` |
| `DATABASE_URL` | URL of a postgres database to be backuped. Ex.: `postgres://postgres@database:5432/postgres` | `nil` |
| `FREQUENCY` | How often clockwork should run the job (ex: `1.day`) | `1.day` |
| `FREQUENCY_AT` | At which hour clockwork should perform the backup (ex: `03:00`) | `nil` |
| `NOTIFIER_SLACK` | Enables slack notifier | `false` |
| `NOTIFIER_SLACK_ON_SUCCESS` | Send success notifications | `false` |
| `NOTIFIER_SLACK_ON_WARNING` | Send warning notifications | `false` |
| `NOTIFIER_SLACK_ON_FAILURE` | Send failure notifications | `false` |
| `NOTIFIER_SLACK_WEBHOOK_URL` | Slack webhook url | `nil` |