-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
61 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: Use the image as a non-root user | ||
layout: default | ||
parent: How Tos | ||
nav_order: 16 | ||
--- | ||
|
||
# Use the image as a non-root user | ||
|
||
{: .important } | ||
Running as a non-root user limits interaction with the Docker Daemon. | ||
If you want to stop and restart containers and services during backup, and the host's Docker daemon is running as root, you will also need to run this tool as root. | ||
|
||
By default, this image executes backups using the `root` user. | ||
In case you prefer to use a different user, you can use Docker's [`user` ](https://docs.docker.com/engine/reference/run/#user) option, passing the user and group id: | ||
|
||
```console | ||
docker run --rm \ | ||
-v data:/backup/data \ | ||
--env AWS_ACCESS_KEY_ID="<xxx>" \ | ||
--env AWS_SECRET_ACCESS_KEY="<xxx>" \ | ||
--env AWS_S3_BUCKET_NAME="<xxx>" \ | ||
--entrypoint backup \ | ||
--user 1000:1000 \ | ||
offen/docker-volume-backup:v2 | ||
``` | ||
|
||
or in a compose file: | ||
|
||
```yml | ||
services: | ||
backup: | ||
image: offen/docker-volume-backup:v2 | ||
user: 1000:1000 | ||
# further configuration omitted ... | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters