2021-06-14 21:48:31 +00:00
|
|
|
---
|
2021-06-14 21:59:55 +00:00
|
|
|
name: Rclone Snapshot Sync
|
2023-11-13 21:52:52 +00:00
|
|
|
version: '1.6.1'
|
2021-06-16 00:17:06 +00:00
|
|
|
slug: rclone
|
2021-06-14 21:59:55 +00:00
|
|
|
description: Sync snapshots to another devices
|
2021-06-14 21:48:31 +00:00
|
|
|
arch:
|
|
|
|
- armhf
|
|
|
|
- armv7
|
|
|
|
- aarch64
|
|
|
|
- amd64
|
|
|
|
startup: application
|
2022-05-18 17:54:12 +00:00
|
|
|
init: false
|
2021-06-14 21:48:31 +00:00
|
|
|
boot: auto
|
|
|
|
ingress: true
|
|
|
|
ingress_port: 5572
|
|
|
|
ports:
|
|
|
|
5572/tcp: null
|
|
|
|
ports_description:
|
|
|
|
5572/tcp: Web configuration GUI (not required for ingress)
|
|
|
|
map:
|
2022-01-09 14:13:52 +00:00
|
|
|
- backup:rw
|
2021-06-14 21:48:31 +00:00
|
|
|
- ssl:ro
|
|
|
|
options:
|
|
|
|
cron: "0 * * * *"
|
|
|
|
destination: "<drive>:<path>"
|
|
|
|
sync_command: sync
|
2021-11-29 18:39:52 +00:00
|
|
|
prune:
|
|
|
|
rules: ""
|
|
|
|
cron: ""
|
|
|
|
delete: false
|
2021-06-14 21:48:31 +00:00
|
|
|
credentials:
|
2023-12-07 17:12:19 +00:00
|
|
|
username: null
|
|
|
|
password: null
|
2021-06-14 21:48:31 +00:00
|
|
|
tls:
|
|
|
|
ssl: false
|
|
|
|
certfile: fullchain.pem
|
|
|
|
keyfile: privkey.pem
|
2023-11-13 21:39:54 +00:00
|
|
|
protected_only: false
|
2021-06-14 21:48:31 +00:00
|
|
|
schema:
|
|
|
|
cron: str
|
|
|
|
destination: str
|
|
|
|
sync_command: list(sync|copy|move)
|
2021-11-29 18:39:52 +00:00
|
|
|
prune:
|
|
|
|
rules: str
|
|
|
|
cron: str
|
|
|
|
delete: bool
|
2021-06-14 21:48:31 +00:00
|
|
|
credentials:
|
2023-12-07 17:46:09 +00:00
|
|
|
username: str?
|
|
|
|
password: str?
|
2021-06-14 21:48:31 +00:00
|
|
|
tls:
|
|
|
|
ssl: bool
|
|
|
|
certfile: str
|
|
|
|
keyfile: str
|
2023-11-07 17:16:27 +00:00
|
|
|
protected_only: bool
|