mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
Frederik Ring
0bb94a2f56
* 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
24 lines
576 B
Markdown
24 lines
576 B
Markdown
---
|
|
title: Use with rootless Docker
|
|
layout: default
|
|
parent: How Tos
|
|
nav_order: 15
|
|
---
|
|
|
|
# Use with rootless Docker
|
|
|
|
It's also possible to use this image with a [rootless Docker installation][rootless-docker].
|
|
Instead of mounting `/var/run/docker.sock`, mount the user-specific socket into the container:
|
|
|
|
```yml
|
|
services:
|
|
backup:
|
|
image: offen/docker-volume-backup:v2
|
|
# ... configuration omitted
|
|
volumes:
|
|
- backup:/backup:ro
|
|
- /run/user/1000/docker.sock:/var/run/docker.sock:ro
|
|
```
|
|
|
|
[rootless-docker]: https://docs.docker.com/engine/security/rootless/
|