Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rickmak/azure-blob-backup
Tools intents to run inside AKS for backing up a Azure Blob to another Blob
https://github.com/rickmak/azure-blob-backup
Last synced: about 2 months ago
JSON representation
Tools intents to run inside AKS for backing up a Azure Blob to another Blob
- Host: GitHub
- URL: https://github.com/rickmak/azure-blob-backup
- Owner: rickmak
- License: mit
- Created: 2020-04-08T05:34:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-14T01:45:18.000Z (almost 5 years ago)
- Last Synced: 2024-11-06T08:33:53.760Z (3 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# azure-blob-backup
Image prepared to backup Azure Blob storage to another Blob storage within a
time spend. It intent to produce a delta backup incrementally.# Usage
```
docker run \
--env SOURCE_ACCOUNT=${SOURCE_ACCOUNT} \
--env SOURCE_KEY=${SOURCE_KEY} \
--env SOURCE_CONTAINER=${SOURCE_CONTAINER} \
--env DESTINATION_ACCOUNT=${DESTINATION_ACCOUNT} \
--env DESTINATION_KEY=${DESTINATION_KEY} \
--env DESTINATION_CONTAINER=${DESTINATION_CONTAINER} \
--env AFTER=${+%Y-%m-%dT00:00:00Z} \
--env BEFORE=${+%Y-%m-%dT00:00:00Z} \
--rm rickmak/azure-blob-backup:latest
````AFTER` and `BEFORE` is the time range that will backup.
The source blob create between the time will backup to the folder prefix by
`AFTER-BEFORE`.If `AFTER` and `BEFORE` is missin, it default to backup the last day blob. The
time is snap to `00:00:00Z`(UTC)