Bot Updating Documentation

rootless
LinuxServer-CI 2023-02-11 10:17:28 +00:00
rodzic 17be5c05e0
commit ec8bdfa0d8
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -31,7 +31,7 @@ The architectures supported by this image are:
| :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ✅ | arm64v8-\<version tag\> |
| 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 `<your ip>: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:
- </path/to/appdata/config>:/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 </path/to/appdata/config>:/config \
@ -88,6 +87,7 @@ docker run -d \
-v </path/to/source>:/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`)