diff --git a/images/docker-duplicati.md b/images/docker-duplicati.md index 7cd95ae8b..fc7fdb8cd 100644 --- a/images/docker-duplicati.md +++ b/images/docker-duplicati.md @@ -31,7 +31,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf| ❌ | | +| armhf | ❌ | | ## Version Tags @@ -41,7 +41,6 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Beta releases of Duplicati | | development | ✅ | Canary releases of Duplicati | - ## Application Setup The webui is at `:8200` , create backup jobs etc via the webui, for local backups select `/backups` as the destination. For more information see [Duplicati](https://www.duplicati.com/). @@ -62,7 +61,7 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=Europe/London + - TZ=Etc/UTC - CLI_ARGS= #optional volumes: - :/config @@ -80,7 +79,7 @@ docker run -d \ --name=duplicati \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ=Europe/London \ + -e TZ=Etc/UTC \ -e CLI_ARGS= `#optional` \ -p 8200:8200 \ -v :/config \ @@ -88,6 +87,7 @@ docker run -d \ -v :/source \ --restart unless-stopped \ lscr.io/linuxserver/duplicati:latest + ``` ## Parameters @@ -106,7 +106,7 @@ Docker images are configured using parameters passed at runtime (such as those a | :----: | --- | | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | -| `TZ=Europe/London` | Specify a timezone to use EG Europe/London | +| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `CLI_ARGS=` | Optionally specify any [CLI variables](https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/) you want to launch the app with | ### Volume Mappings (`-v`)