docker-volume-backup/docs/how-tos/use-rootless-docker.md
Frederik Ring 0bb94a2f56
Docs site (#269)
* Set up documentation site using jekyll

* Add workflow for deploying docs

* Ini formatting is hard to read

* Add instructions on how to run docs locally

* Work through docs

* Remove content from README

* Miscellaneous fixes

* Fix artifact upload
2023-09-16 11:54:39 +02:00

576 B

title layout parent nav_order
Use with rootless Docker default How Tos 15

Use with rootless Docker

It's also possible to use this image with a rootless Docker installation. Instead of mounting /var/run/docker.sock, mount the user-specific socket into the container:

services:
  backup:
    image: offen/docker-volume-backup:v2
    # ... configuration omitted
    volumes:
      - backup:/backup:ro
      - /run/user/1000/docker.sock:/var/run/docker.sock:ro