Skip to content

Commit 4ddacc9

Browse files
Documentation updates (#750)
* add /usr/share/zoneinfo bind mount * update description with timezone bind mount * correct image size (uncompressed) * remove specific image size
1 parent b605004 commit 4ddacc9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/how-tos/set-container-timezone.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nav_order: 8
99

1010
By default a container based on this image will run in the UTC timezone.
1111
As the image is designed to be as small as possible, additional timezone data is not included.
12-
In case you want to run your cron rules in your local timezone (respecting DST and similar), you can mount your Docker host's `/etc/timezone` and `/etc/localtime` in read-only mode:
12+
In case you want to run your cron rules in your local timezone (respecting DST and similar), you can mount your Docker host's `/etc/timezone`, `/etc/localtime`, and `/usr/share/zoneinfo` in read-only mode:
1313

1414
```yml
1515
services:
@@ -19,6 +19,7 @@ services:
1919
- data:/backup/my-app-backup:ro
2020
- /etc/timezone:/etc/timezone:ro
2121
- /etc/localtime:/etc/localtime:ro
22+
- /usr/share/zoneinfo:/usr/share/zoneinfo:ro
2223

2324
volumes:
2425
data:

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Backup Docker volumes locally or to any S3, WebDAV, Azure Blob Storage, Dropbox,
1212

1313
---
1414

15-
The [offen/docker-volume-backup](https://hub.docker.com/r/offen/docker-volume-backup) Docker image can be used as a lightweight (below 15MB) companion container to an existing Docker setup.
15+
The [offen/docker-volume-backup](https://hub.docker.com/r/offen/docker-volume-backup) Docker image can be used as a lightweight companion container to an existing Docker setup.
1616
It handles __recurring or one-off backups of Docker volumes__ to a __local directory__, __any S3, WebDAV, Azure Blob Storage, Dropbox, Google Drive or SSH compatible storage (or any combination thereof) and rotates away old backups__ if configured. It also supports __encrypting your backups using GPG__ and __sending notifications for (failed) backup runs__.
1717

1818
{: .note }

0 commit comments

Comments
 (0)