You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autorestic/docs/pages/location/docker.md

550 B

Docker

autorestic supports docker volumes directly, without needing them to be mounted to the host filesystem.

version: '3.8'

volumes:
  data:
    name: my-data

services:
  api:
    image: alpine
    volumes:
      - data:/foo/bar
locations:
  hello:
    from: my-data
    type: volume
    # ...

Now you can backup and restore as always.

autorestic backup -l hello
autorestic restore -l hello

The volume has to exists whenever backing up or restoring.