mirror of
https://github.com/okxlin/appstore.git
synced 2026-03-06 16:58:03 +08:00
feat:添加gopeed到列表(感谢网友包子叔的投稿)
This commit is contained in:
parent
298abc4d24
commit
410451675c
3
apps/gopeed/1.3.10/.env.sample
Normal file
3
apps/gopeed/1.3.10/.env.sample
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER_NAME="gopeed"
|
||||
PANEL_APP_PORT_HTTP="40126"
|
||||
DOWNLOAD_PATH="./data/Downloads"
|
||||
17
apps/gopeed/1.3.10/data.yml
Normal file
17
apps/gopeed/1.3.10/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40126
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/Downloads
|
||||
edit: true
|
||||
envKey: DOWNLOAD_PATH
|
||||
labelEn: Download folder path
|
||||
labelZh: 下载文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
18
apps/gopeed/1.3.10/docker-compose.yml
Normal file
18
apps/gopeed/1.3.10/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
||||
version: '3'
|
||||
services:
|
||||
gopeed:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:9999"
|
||||
volumes:
|
||||
- "${DOWNLOAD_PATH}:/root/Downloads"
|
||||
image: liwei2633/gopeed:v1.3.10
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
65
apps/gopeed/README.md
Normal file
65
apps/gopeed/README.md
Normal file
@ -0,0 +1,65 @@
|
||||
[](https://github.com/GopeedLab/gopeed/actions?query=workflow%3Atest)
|
||||
[](https://codecov.io/gh/GopeedLab/gopeed)
|
||||
[](https://github.com/GopeedLab/gopeed/releases)
|
||||
[](https://github.com/GopeedLab/gopeed/releases)
|
||||
[](https://github.com/GopeedLab/gopeed/blob/main/.donate/index.md#donate)
|
||||
[](https://discord.gg/ZUJqJrwCGB)
|
||||
|
||||

|
||||
|
||||
|
||||
## 介绍
|
||||
|
||||
Gopeed(全称 Go Speed),是一款由`Golang`+`Flutter`开发的高速下载器,支持(HTTP、BitTorrent、Magnet)协议下载,并且支持全平台使用。
|
||||
|
||||
访问 ✈ [官方网站](https://gopeed.com/zh-CN) | 📖 [开发文档](https://docs.gopeed.com/zh/)
|
||||
|
||||
## 安装
|
||||
|
||||
**已支持平台**
|
||||
|
||||
- [x] windows
|
||||
- [x] macos
|
||||
- [x] linux
|
||||
- [x] android
|
||||
- [ ] ios
|
||||
- [x] web
|
||||
- [x] docker
|
||||
|
||||
[前往下载](https://github.com/GopeedLab/gopeed/releases/latest)
|
||||
|
||||
> 注:macos 版本运行如果提示损坏,请在终端执行 `xattr -d com.apple.quarantine /Applications/Gopeed.app` 命令
|
||||
|
||||
### 命令行工具
|
||||
|
||||
使用`go install`安装:
|
||||
|
||||
```bash
|
||||
go install github.com/GopeedLab/gopeed/cmd/gopeed@latest
|
||||
```
|
||||
|
||||
### Docker
|
||||
|
||||
#### 直接运行
|
||||
|
||||
```bash
|
||||
docker run -d -p 9999:9999 -v /path/to/download:/root/Downloads liwei2633/gopeed
|
||||
```
|
||||
|
||||
#### 使用 Docker Compose
|
||||
|
||||
```bash
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
#### 访问服务
|
||||
|
||||
当 docker 容器运行时,可以通过 `http://localhost:9999` 访问 web 页面。
|
||||
|
||||
## 打赏
|
||||
|
||||
如果觉得项目对你有帮助,请考虑[打赏](https://github.com/GopeedLab/gopeed/blob/main/.donate/index.md#donate)以支持这个项目的发展,非常感谢!
|
||||
|
||||
## 界面展示
|
||||
|
||||

|
||||
20
apps/gopeed/data.yml
Normal file
20
apps/gopeed/data.yml
Normal file
@ -0,0 +1,20 @@
|
||||
name: Gopeed
|
||||
tags:
|
||||
- 工具
|
||||
title: 一款现代化的下载器
|
||||
type: 工具
|
||||
description: 一款现代化的下载器
|
||||
additionalProperties:
|
||||
key: gopeed
|
||||
name: Gopeed
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 一款现代化的下载器
|
||||
shortDescEn: High speed downloader that supports all platforms
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://gopeed.com
|
||||
github: https://github.com/GopeedLab/gopeed
|
||||
document: https://docs.gopeed.com
|
||||
3
apps/gopeed/latest/.env.sample
Normal file
3
apps/gopeed/latest/.env.sample
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER_NAME="gopeed"
|
||||
PANEL_APP_PORT_HTTP="40126"
|
||||
DOWNLOAD_PATH="./data/Downloads"
|
||||
17
apps/gopeed/latest/data.yml
Normal file
17
apps/gopeed/latest/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 40126
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ./data/Downloads
|
||||
edit: true
|
||||
envKey: DOWNLOAD_PATH
|
||||
labelEn: Download folder path
|
||||
labelZh: 下载文件夹路径
|
||||
required: true
|
||||
type: text
|
||||
18
apps/gopeed/latest/docker-compose.yml
Normal file
18
apps/gopeed/latest/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
||||
version: '3'
|
||||
services:
|
||||
gopeed:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:9999"
|
||||
volumes:
|
||||
- "${DOWNLOAD_PATH}:/root/Downloads"
|
||||
image: liwei2633/gopeed:latest
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
BIN
apps/gopeed/logo.png
Normal file
BIN
apps/gopeed/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
Loading…
Reference in New Issue
Block a user