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
20 lines
663 B
Markdown
20 lines
663 B
Markdown
---
|
|
title: Replace deprecated BACKUP_STOP_CONTAINER_LABEL setting
|
|
layout: default
|
|
parent: How Tos
|
|
nav_order: 20
|
|
---
|
|
|
|
# Replace deprecated `BACKUP_STOP_CONTAINER_LABEL` setting
|
|
|
|
Version `v2.36.0` deprecated the `BACKUP_STOP_CONTAINER_LABEL` setting and renamed it `BACKUP_STOP_DURING_BACKUP_LABEL` which is supposed to signal that this will stop both containers _and_ services.
|
|
Migrating is done by renaming the key for your custom value:
|
|
|
|
```diff
|
|
env:
|
|
- BACKUP_STOP_CONTAINER_LABEL: database
|
|
+ BACKUP_STOP_DURING_BACKUP_LABEL: database
|
|
```
|
|
|
|
The old key will stay supported until the next major version, but logs a warning each time a backup is taken.
|