# infra-docker-lloyd **Repository Path**: mirrors_docker/infra-docker-lloyd ## Basic Information - **Project Name**: infra-docker-lloyd - **Description**: Shipment insurance for docker containers - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-13 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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" ...