Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/docker-archive/infra-docker-lloyd
Shipment insurance for docker containers
https://github.com/docker-archive/infra-docker-lloyd
Last synced: 4 days ago
JSON representation
Shipment insurance for docker containers
- Host: GitHub
- URL: https://github.com/docker-archive/infra-docker-lloyd
- Owner: docker-archive
- Archived: true
- Created: 2014-03-28T14:10:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-07T19:43:45.000Z (almost 9 years ago)
- Last Synced: 2024-08-02T12:51:29.998Z (3 months ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 55
- Watchers: 9
- Forks: 18
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - docker-archive/infra-docker-lloyd - Shipment insurance for docker containers (others)
README
# NO LONGER BEING MAINTAINED
# docker-lloyd
*[Lloyd's Coffee House](http://en.wikipedia.org/wiki/Lloyd%27s_Coffee_House)
was the first marine insurance company.*This tools backups Docker [volume containers](http://docs.docker.io/en/latest/use/working_with_volumes/#creating-and-mounting-a-data-volume-container)
and stores them on s3.To use it, run:
$ docker run -v /var/run/docker.sock:/docker.sock \
-v /var/lib/docker/vfs/dir:/var/lib/docker/vfs/dir \
-e ACCESS_KEY=... -e SECRET_KEY=... docker-backup-daemon \
s3:// container-a container-b container-c...This will run [docker-backup](https://github.com/discordianfish/docker-backup),
gzip and upload a tarball named after the container to S3.See [docker-backup](https://github.com/discordianfish/docker-backup) on
how to restore a backup.The Dockerfile passes command line options to docker-backup by setting the OPTS
environment variable. If you need to override/change those, you can set it on
the command line:$ docker run -e OPTS="-addr=/foo/docker.sock" ...