mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
Frederik Ring
f64aaa6e24
* Allow backup to be run as non-root user * Document usage as non-root user * Also test /etc access * Choose better name for doc
1016 B
1016 B
title | layout | parent | nav_order |
---|---|---|---|
Use the image as a non-root user | default | How Tos | 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
option, passing the user and group id:
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:
services:
backup:
image: offen/docker-volume-backup:v2
user: 1000:1000
# further configuration omitted ...