Update Apps
This commit is contained in:
49
apps/verysync/2.20.1/data.yml
Normal file
49
apps/verysync/2.20.1/data.yml
Normal file
@@ -0,0 +1,49 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 8886
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Web Port
|
||||
labelZh: Web管理端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 22330
|
||||
edit: true
|
||||
envKey: VERYSYNC_TRANSFER_PORT
|
||||
labelEn: Transfer Port
|
||||
labelZh: 数据传输端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 3000
|
||||
edit: true
|
||||
envKey: PUBLIC_RELAY_PORT
|
||||
labelEn: Public Relay Port
|
||||
labelZh: 公共中继端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 22027
|
||||
edit: true
|
||||
envKey: LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_1
|
||||
labelEn: Local Area Network UDP discovery port 1
|
||||
labelZh: 内网udp发现端口1
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 22037
|
||||
edit: true
|
||||
envKey: LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_2
|
||||
labelEn: Local Area Network UDP discovery port 2
|
||||
labelZh: 内网udp发现端口2
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data
|
||||
edit: true
|
||||
envKey: VERYSYNC_DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据目录
|
||||
required: true
|
||||
type: text
|
||||
23
apps/verysync/2.20.1/docker-compose.yml
Normal file
23
apps/verysync/2.20.1/docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
verysync:
|
||||
image: jonnyan404/verysync
|
||||
container_name: verysync
|
||||
environment:
|
||||
- PORT=${PANEL_APP_PORT_HTTP}
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
- ${VERYSYNC_TRANSFER_PORT}:22330
|
||||
- ${PUBLIC_RELAY_PORT}:3000
|
||||
- ${LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_1}:22027/udp
|
||||
- ${LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_2}:22037/udp
|
||||
volumes:
|
||||
- ${VERYSYNC_DATA_PATH}:/data
|
||||
restart: always
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
- 1panel-network
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
70
apps/verysync/README.md
Normal file
70
apps/verysync/README.md
Normal file
@@ -0,0 +1,70 @@
|
||||
> 简单易用的多平台文件同步软件,惊人的传输速度是不同于其他产品的最大优势, 微力同步 的智能 P2P 技术加速同步,会将文件分割成若干份仅 KB 的数据同步,而文件都会进行 AES 加密处理。
|
||||
|
||||
- 官网:http://verysync.com/
|
||||
- 论坛:http://forum.verysync.com/forum.php
|
||||
- QQ群号: 530209771
|
||||
|
||||
---
|
||||
|
||||
## 简单使用
|
||||
|
||||
`docker run --name verysync -d -p 8886:8886 jonnyan404/verysync`
|
||||
|
||||
- 打开 http://IP:8886 即可访问.
|
||||
|
||||
## 进阶使用
|
||||
**自定义端口**
|
||||
|
||||
`docker run --name verysync -d -p 3000:3000 -p 22037:22037/udp -p 22027:22027/udp -p xxx:xxx -e PORT=yyy -p yyy:yyy jonnyan404/verysync`
|
||||
|
||||
|
||||
|
||||
- 3000 为默认公共中继端口-(**可选**)
|
||||
- 22027/22037 为内网udp发现端口-(**可选**)
|
||||
- xxx 数据传输端口(默认22330)-(**可选**)
|
||||
- yyy web管理页面端口(默认8886)-(**必须**)
|
||||
|
||||
**挂载配置与数据目录**
|
||||
|
||||
`docker run --name verysync -d -v /path/you/dir:/data -p 3000:3000 -p 22037:22037/udp -p 22027:22027/udp -p xxx:xxx -e PORT=yyy -p yyy:yyy jonnyan404/verysync`
|
||||
|
||||
|
||||
|
||||
- /path/you/dir 替换为你自己的目录(可执行创建命令 mkdir -p /path/you/dir)
|
||||
- 在web界面指定下载目录为 `/data` 即可下载数据到宿主机的 `/path/you/dir` 目录.
|
||||
|
||||
**以 no-root 用户运行**
|
||||
|
||||
从 2.16.x 版本开始,
|
||||
如需自定义用户,请自行定义变量 `VUID` 的值(此值必须为Linux系统已存在的UID值).
|
||||
|
||||
## 离线镜像下载
|
||||
|
||||
在 [Releases](https://github.com/jonnyan404/verysync/releases) 页面可以下载各个架构的离线 Docker 镜像。提供了以下架构的镜像:
|
||||
|
||||
- AMD64 (x86_64): 适用于大多数桌面电脑、服务器
|
||||
- ARM64 (aarch64): 适用于树莓派 4/5、M1/M2 Mac、部分 ARM 服务器
|
||||
- ARMv7: 适用于树莓派 2/3、部分老旧 ARM 设备
|
||||
|
||||
### 离线镜像使用方法
|
||||
|
||||
1. 下载对应架构的镜像压缩包
|
||||
2. 使用以下命令导入镜像:
|
||||
|
||||
```bash
|
||||
# 解压并导入镜像
|
||||
gunzip -c verysync-docker-*.tar.gz | docker load
|
||||
|
||||
# 例如:
|
||||
gunzip -c verysync-docker-v2.20.1-amd64.tar.gz | docker load
|
||||
```
|
||||
|
||||
3. 导入完成后,即可正常使用:
|
||||
|
||||
```bash
|
||||
# 查看导入的镜像
|
||||
docker images | grep verysync
|
||||
|
||||
# 运行容器
|
||||
docker run --name verysync -d -p 8886:8886 jonnyan404/verysync:v2.20.1
|
||||
```
|
||||
32
apps/verysync/data.yml
Normal file
32
apps/verysync/data.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
additionalProperties:
|
||||
key: verysync
|
||||
name: Verysync
|
||||
tags:
|
||||
- Sync
|
||||
- NAS
|
||||
- Backup
|
||||
- PrivateCloud
|
||||
- Docker
|
||||
- CrossPlatform
|
||||
shortDescZh: 简单易用的P2P多平台文件同步软件
|
||||
shortDescEn: Easy to use multi-platform file synchronization software
|
||||
description:
|
||||
en: Fast P2P file synchronization tool based on intelligent technology. Supports multi-platform deployment, suitable for home, enterprise, and developer scenarios.
|
||||
ja: 高速P2Pファイル同期ツール。多プラットフォーム対応。
|
||||
ms: Alat penyegerakan fail P2P pantas, menyokong pelbagai platform.
|
||||
pt-br: Ferramenta de sincronização de arquivos P2P rápida, com suporte multiplataforma.
|
||||
ru: Быстрый инструмент P2P-синхронизации файлов, поддержка различных платформ.
|
||||
ko: 빠른 P2P 파일 동기화 도구, 다양한 플랫폼 지원.
|
||||
zh-hant: 極速P2P檔案同步工具,支援多平台。
|
||||
zh: 简单易用的P2P多平台文件同步软件
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://www.verysync.com/
|
||||
github: https://github.com/Jonnyan404/verysync
|
||||
document: https://www.verysync.com/manual/install/docker.html
|
||||
architectures:
|
||||
- amd64
|
||||
- arm64
|
||||
- arm/v7
|
||||
BIN
apps/verysync/logo.png
Normal file
BIN
apps/verysync/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Reference in New Issue
Block a user