update READMEs

This commit is contained in:
FTCHD
2026-07-16 00:15:31 +03:00
parent eec999f7c7
commit da6677963e
8 changed files with 649 additions and 602 deletions
+81 -76
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="Downloads" src="https://img.shields.io/badge/DOWNLOADS-blue?style=for-the-badge&label=Tap%20to%20see" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#package-managers">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#package-managers">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#package-managers">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#package-managers">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,54 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/Server Usage
Control your server, homelab, or mom's PC with **the easiest solution to manage remote **`rclone`** instances.**
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Without Docker
Just start the `rcd` daemon directly:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Notes
- After starting up **`rclone`** using your preferred method, simply open Rclone UI and navigate to Settings > Hosts.
- Make sure to allow traffic to port **`5572`** in your firewall and/or reverse proxy (nginx/caddy/traefik).
- Rclone UI can connect to any RCD port, so you can customize the default **`5572`** port.
- Use **`--rc-user`** and **`--rc-pass`** instead of **`--rc-no-auth`** in production.
## Package Managers
- Flathub **`flatpak install com.rcloneui.RcloneUI`** or **[from the store](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>Tap here to open the Apple App Store</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>Tap here to open the Google Play Store</b></a></td>
</tr>
</table>
## Downloads
- **Windows** (**[Arm](https://get.rcloneui.com/win-arm)**, **[x64](https://get.rcloneui.com/win)**)
@@ -109,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux** (**[AppImage](https://get.rcloneui.com/linux)**, **[deb](https://get.rcloneui.com/linux-deb)**, **[rpm](https://get.rcloneui.com/linux-rpm)**)
- **Linux `Arm`** (**[AppImage](https://get.rcloneui.com/linux-arm)**, **[deb](https://get.rcloneui.com/linux-deb-arm)**, **[rpm](https://get.rcloneui.com/linux-rpm-arm)**)
## Docker/Homelab/Server Usage
Control your server, homelab, or mom's PC with **the easiest solution to manage remote **`rclone`** instances.**
[**Check out the guide for controlling remote instances.**](https://rcloneui.com/docs/ui/docker)
## Roadmap
> Finalized items have been moved to the "Features" section.
### [Check out the V3 discussion!](https://github.com/rclone-ui/rclone-ui/issues/18)
+81 -75
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="下载" src="https://img.shields.io/badge/下载-blue?style=for-the-badge&label=Tap%20to%20see" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#包管理器">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#包管理器">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#包管理器">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="GitHub Stars" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_CHINESE.md#包管理器">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/服务器使用
使用 **最简单的方式** 管理远程 **`rclone`** 实例,控制你的服务器、Homelab 或家人的电脑。
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### 不使用 Docker
直接启动 `rcd` 守护进程:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### 注意事项
- 使用你喜欢的方式启动 **`rclone`** 后,打开 Rclone UI 并导航到 Settings > Hosts。
- 确保在防火墙和/或反向代理(nginx/caddy/traefik)中允许端口 **`5572`** 的流量。
- Rclone UI 可以连接到任意 RCD 端口,你可以自定义默认的 **`5572`** 端口。
- 在生产环境中使用 **`--rc-user`** 和 **`--rc-pass`** 而不是 **`--rc-no-auth`**。
## 包管理器
- Flathub **`flatpak install com.rcloneui.RcloneUI`** 或 **[从商店获取](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>点击此处打开 Apple App Store</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>点击此处打开 Google Play 商店</b></a></td>
</tr>
</table>
## 下载
- **Windows****[Arm](https://get.rcloneui.com/win-arm)**、**[x64](https://get.rcloneui.com/win)**
@@ -108,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux****[AppImage](https://get.rcloneui.com/linux)**、**[deb](https://get.rcloneui.com/linux-deb)**、**[rpm](https://get.rcloneui.com/linux-rpm)**
- **Linux `Arm`****[AppImage](https://get.rcloneui.com/linux-arm)**、**[deb](https://get.rcloneui.com/linux-deb-arm)**、**[rpm](https://get.rcloneui.com/linux-rpm-arm)**
## Docker/Homelab/服务器使用
使用 **最简单的方式** 管理远程 **`rclone`** 实例,控制你的服务器、Homelab 或家人的电脑。
[**查看远程实例控制指南。**](https://rcloneui.com/docs/ui/docker)
## 路线图
> 已完成的内容已移至「功能」部分。
### [来看看 V3 的讨论!](https://github.com/rclone-ui/rclone-ui/issues/37)
+81 -75
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="Aufladen" src="https://img.shields.io/badge/AUFLADEN-blue?style=for-the-badge&label=Tap%20to%20see" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#package-managers">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_GERMAN.md#package-managers">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/Server-Nutzung
Steuere deinen Server, dein Homelab oder den PC deiner Mutter mit **der einfachsten Lösung, Remote-**`rclone`**-Instanzen zu verwalten.**
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Ohne Docker
Starte den `rcd`-Daemon einfach direkt:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Hinweise
- Nachdem du **`rclone`** mit deiner bevorzugten Methode gestartet hast, öffne Rclone UI und navigiere zu Settings > Hosts.
- Stelle sicher, dass der Datenverkehr auf Port **`5572`** in deiner Firewall und/oder deinem Reverse Proxy (nginx/caddy/traefik) erlaubt ist.
- Rclone UI kann sich mit jedem RCD-Port verbinden, sodass du den Standard-Port **`5572`** anpassen kannst.
- Verwende **`--rc-user`** und **`--rc-pass`** anstelle von **`--rc-no-auth`** in der Produktion.
## Package Managers
- Flathub **`flatpak install com.rcloneui.RcloneUI`** oder **[aus dem Store](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>Hier tippen, um den Apple App Store zu öffnen</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>Hier tippen, um den Google Play Store zu öffnen</b></a></td>
</tr>
</table>
## Downloads
- **Windows** (**[Arm](https://get.rcloneui.com/win-arm)**, **[x64](https://get.rcloneui.com/win)**)
@@ -108,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux** (**[AppImage](https://get.rcloneui.com/linux)**, **[deb](https://get.rcloneui.com/linux-deb)**, **[rpm](https://get.rcloneui.com/linux-rpm)**)
- **Linux `Arm`** (**[AppImage](https://get.rcloneui.com/linux-arm)**, **[deb](https://get.rcloneui.com/linux-deb-arm)**, **[rpm](https://get.rcloneui.com/linux-rpm-arm)**)
## Docker/Homelab/Server-Nutzung
Steuere deinen Server, dein Homelab oder den PC deiner Mutter mit **der einfachsten Lösung, Remote-**`rclone`**-Instanzen zu verwalten.**
[**Sieh dir die Anleitung zur Steuerung von Remote-Instanzen an.**](https://rcloneui.com/docs/ui/docker)
## Roadmap
> Abgeschlossene Items wurden in den Abschnitt „Features“ verschoben.
### [Check out the V3 discussion!](https://github.com/rclone-ui/rclone-ui/issues/37)
+81 -75
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="ダウンロード" src="https://img.shields.io/badge/ダウンロード-blue?style=for-the-badge&label=Tap%20to%20see" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#パッケージマネージャー">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#パッケージマネージャー">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#パッケージマネージャー">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="GitHub スター" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_JAPANESE.md#パッケージマネージャー">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/サーバー利用
**リモート **`rclone`** インスタンスを管理する最も簡単な方法**で、サーバー、Homelab、家族の PC を管理しましょう。
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Docker なしで使う
`rcd` デーモンを直接起動してください:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### 注意事項
- お好みの方法で **`rclone`** を起動したら、Rclone UI を開き Settings > Hosts に移動します。
- ファイアウォールやリバースプロキシ(nginx/caddy/traefik)でポート **`5572`** へのトラフィックを許可してください。
- Rclone UI は任意の RCD ポートに接続できるので、デフォルトの **`5572`** ポートをカスタマイズできます。
- 本番環境では **`--rc-no-auth`** の代わりに **`--rc-user`** と **`--rc-pass`** を使用してください。
## パッケージマネージャー
- Flathub **`flatpak install com.rcloneui.RcloneUI`** または **[ストアから](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** と **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>ここをタップして Apple App Store を開く</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>ここをタップして Google Play ストアを開く</b></a></td>
</tr>
</table>
## ダウンロード
- **Windows****[Arm](https://get.rcloneui.com/win-arm)**、**[x64](https://get.rcloneui.com/win)**
@@ -108,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux****[AppImage](https://get.rcloneui.com/linux)**、**[deb](https://get.rcloneui.com/linux-deb)**、**[rpm](https://get.rcloneui.com/linux-rpm)**
- **Linux `Arm`****[AppImage](https://get.rcloneui.com/linux-arm)**、**[deb](https://get.rcloneui.com/linux-deb-arm)**、**[rpm](https://get.rcloneui.com/linux-rpm-arm)**
## Docker/Homelab/サーバー利用
**リモート **`rclone`** インスタンスを管理する最も簡単な方法**で、サーバー、Homelab、家族の PC を管理しましょう。
[**リモートインスタンスの管理ガイドをご覧ください。**](https://rcloneui.com/docs/ui/docker)
## ロードマップ
> 完了した項目は「機能」セクションに移動しました。
### [V3 のディスカッションをチェック](https://github.com/rclone-ui/rclone-ui/issues/37)
+81 -75
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="#downloads-hoist-the-booty">
<img alt="Downloads" src="https://img.shields.io/badge/DOWNLOADS-blue?style=for-the-badge&label=Tap%20to%20see" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#package-mangarrs">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#package-mangarrs">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#package-mangarrs">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_PIRATE.md#package-mangarrs">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/Server, Ye Scallywag
Command yer server, homelab, or yer mum's vessel with **the simplest way t' manage remote **`rclone`** instances, arrr!**
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Without Docker, Ye Landlubber
Just fire up th' `rcd` daemon directly:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Notes from the Captain
- After hoisting **`rclone`** using yer preferred method, open Rclone UI an' sail to Settings > Hosts.
- Make certain yer firewall an' reverse proxy (nginx/caddy/traefik) be allowin' traffic on port **`5572`**.
- Rclone UI can dock at any RCD port, so ye can customize the default **`5572`** port as ye please.
- Use **`--rc-user`** an' **`--rc-pass`** instead o' **`--rc-no-auth`** in production waters, matey.
## Package Mangarrs
- Flathub **`flatpak install com.rcloneui.RcloneUI`** or **[from th' store](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>Tap here t' open th' Apple App Store</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>Tap here t' open th' Google Play Store</b></a></td>
</tr>
</table>
## Downloads (hoist the booty!)
- **Windows** (**[Arm](https://get.rcloneui.com/win-arm)**, **[x64](https://get.rcloneui.com/win)**)
@@ -108,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux** (**[AppImage](https://get.rcloneui.com/linux)**, **[deb](https://get.rcloneui.com/linux-deb)**, **[rpm](https://get.rcloneui.com/linux-rpm)**)
- **Linux `Arm`** (**[AppImage](https://get.rcloneui.com/linux-arm)**, **[deb](https://get.rcloneui.com/linux-deb-arm)**, **[rpm](https://get.rcloneui.com/linux-rpm-arm)**)
## Docker/Homelab/Server, Ye Scallywag
Command yer server, homelab, or yer mums vessel with **the simplest way t manage remote **`rclone`** instances, arrr!**
[**Check out th guide fer commandin remote instances.**](https://rcloneui.com/docs/ui/docker)
## Chart o the Voyage (Roadmap)
> Plunder already claimed has been moved t the “Features” hold.
### [Spy the V3 Parley!](https://github.com/rclone-ui/rclone-ui/issues/37)
+81 -75
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="Pobrania" src="https://img.shields.io/badge/POBRANIA-blue?style=for-the-badge&label=Kliknij%20by%20zobaczyć" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#package-managers">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="gwiazdki GitHub" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_POLISH.md#package-managers">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/Użycie na serwerze
Kontroluj swój serwer, homelab lub komputer mamy za pomocą **najprostszego rozwiązania do zarządzania zdalnymi instancjami **`rclone`**.**
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Bez Dockera
Po prostu uruchom demon `rcd` bezpośrednio:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Uwagi
- Po uruchomieniu **`rclone`** wybraną metodą, otwórz Rclone UI i przejdź do Settings > Hosts.
- Upewnij się, że zezwalasz na ruch na porcie **`5572`** w swoim firewallu i/lub reverse proxy (nginx/caddy/traefik).
- Rclone UI może łączyć się z dowolnym portem RCD, więc możesz dostosować domyślny port **`5572`**.
- W środowisku produkcyjnym używaj **`--rc-user`** i **`--rc-pass`** zamiast **`--rc-no-auth`**.
## Package Managers
- Flathub **`flatpak install com.rcloneui.RcloneUI`** lub **[ze sklepu](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>Kliknij tutaj, aby otworzyć Apple App Store</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>Kliknij tutaj, aby otworzyć Google Play Store</b></a></td>
</tr>
</table>
## Link do pobrania
- **Windows** (**[Arm](https://get.rcloneui.com/win-arm)**, **[x64](https://get.rcloneui.com/win)**)
@@ -108,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux** (**[AppImage](https://get.rcloneui.com/linux)**, **[deb](https://get.rcloneui.com/linux-deb)**, **[rpm](https://get.rcloneui.com/linux-rpm)**)
- **Linux `Arm`** (**[AppImage](https://get.rcloneui.com/linux-arm)**, **[deb](https://get.rcloneui.com/linux-deb-arm)**, **[rpm](https://get.rcloneui.com/linux-rpm-arm)**)
## Docker/Homelab/Użycie na serwerze
Kontroluj swój serwer, homelab lub komputer mamy za pomocą **najprostszego rozwiązania do zarządzania zdalnymi instancjami **`rclone`**.**
[**Sprawdź przewodnik po zarządzaniu zdalnymi instancjami.**](https://rcloneui.com/docs/ui/docker)
## Co dalej?
> Wszystkie ukonczone zadania zostały przeniesione do sekcji "Funkcje".
### [Zobacz dyskusję o wersji 3!](https://github.com/rclone-ui/rclone-ui/issues/37)
+81 -75
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="Downloads" src="https://img.shields.io/badge/DESCARCA-blue?style=for-the-badge&label=Apasa%20aici" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#package-managers">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_ROMANIAN.md#package-managers">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/Server
Controlează serverul, homelab-ul sau PC-ul mamei tale cu **cea mai simplă soluție pentru a gestiona instanțe **`rclone`** la distanță.**
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Fără Docker
Pornește daemon-ul `rcd` direct:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Note
- După pornirea **`rclone`** folosind metoda preferată, deschide Rclone UI și navighează la Settings > Hosts.
- Asigură-te că permiți traficul pe portul **`5572`** în firewall-ul tău și/sau reverse proxy (nginx/caddy/traefik).
- Rclone UI se poate conecta la orice port RCD, astfel încât poți personaliza portul implicit **`5572`**.
- Folosește **`--rc-user`** și **`--rc-pass`** în loc de **`--rc-no-auth`** în producție.
## Package Managers
- Flathub **`flatpak install com.rcloneui.RcloneUI`** sau **[din magazin](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>Apasă aici pentru a deschide Apple App Store</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>Apasă aici pentru a deschide Google Play Store</b></a></td>
</tr>
</table>
## Descarcă
- **Windows** (**[Arm](https://get.rcloneui.com/win-arm)**, **[x64](https://get.rcloneui.com/win)**)
@@ -108,6 +109,11 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux** (**[AppImage](https://get.rcloneui.com/linux)**, **[deb](https://get.rcloneui.com/linux-deb)**, **[rpm](https://get.rcloneui.com/linux-rpm)**)
- **Linux `Arm`** (**[AppImage](https://get.rcloneui.com/linux-arm)**, **[deb](https://get.rcloneui.com/linux-deb-arm)**, **[rpm](https://get.rcloneui.com/linux-rpm-arm)**)
## Docker/Homelab/Server
Controlează serverul, homelab-ul sau PC-ul maicatii cu **cea mai simplă soluție pentru a gestiona **`rclone`** la distanță.**
[**Vezi aici ghidul pentru controlul instanțelor la distanță.**](https://rcloneui.com/docs/ui/docker)
## Roadmap
> Itemi finalizati au fost mutați în secțiunea „Features”.
### [Vezi discuția pentru V3!](https://github.com/rclone-ui/rclone-ui/issues/37)
+82 -76
View File
@@ -15,36 +15,12 @@
<br />
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/releases/latest">
<img alt="Latest Release" src="https://img.shields.io/github/actions/workflow/status/rclone-ui/rclone-ui/release.yml?style=for-the-badge" />
<a href="https://discord.gg/rclone">
<img alt="Discord" src="https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white&style=for-the-badge" />
</a>
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui?tab=readme-ov-file#downloads">
<img alt="Descargas" src="https://img.shields.io/badge/DESCARGAS-blue?style=for-the-badge&label=Tap%20to%20see" />
</a>
&nbsp;
<a href="https://tauri.app/?ref=rclone-ui">
<img alt="Tauri" src="https://img.shields.io/badge/Tauri-brown?style=for-the-badge&logo=rust&color=f85214" />
</a>
</p>
<p align="center">
<a href="#package-managers">
<img alt="Choco" src="https://img.shields.io/badge/Choco-42345f?style=for-the-badge&logo=chocolatey" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" />
</a>
&nbsp;
<a href="#package-managers">
<img alt="Homebrew" src="https://img.shields.io/badge/BREW-1f1d1a?style=for-the-badge&logo=homebrew" />
</a>
</p>
<p align="center">
<a href="https://github.com/rclone-ui/rclone-ui/stargazers">
<img alt="Estrellas del repositorio en GitHub" src="https://img.shields.io/github/stars/rclone-ui/rclone-ui" />
&nbsp;
<a href="https://github.com/rclone-ui/rclone-ui/blob/main/README_SPANISH.md#package-managers">
<img alt="Downloads on Github" src="https://img.shields.io/github/downloads/rclone-ui/rclone-ui/total?style=for-the-badge">
</a>
</p>
@@ -54,53 +30,78 @@
<img src=".github/rclone-video.png" alt="The GUI for Rclone">
</a>
## Docker/Homelab/Servidor
Controla tu servidor, homelab o el PC de tu madre con **la solución más fácil para gestionar instancias remotas de **`rclone`**.**
#### Docker Compose
```yaml
services:
rclone:
image: rclone/rclone
container_name: rclone
command: rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
ports:
- 5572:5572
volumes:
- ./config:/config/rclone
- /path/to/data:/data
```
#### Docker CLI
```bash
docker run -d \
--name rclone \
-p 5572:5572 \
-v ./config:/config/rclone \
-v /path/to/data:/data \
rclone/rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Sin Docker
Simplemente inicia el daemon `rcd` directamente:
```bash
rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
```
#### Notas
- Después de iniciar **`rclone`** usando tu método preferido, abre Rclone UI y navega a Settings > Hosts.
- Asegúrate de permitir el tráfico en el puerto **`5572`** en tu firewall y/o proxy inverso (nginx/caddy/traefik).
- Rclone UI puede conectarse a cualquier puerto RCD, por lo que puedes personalizar el puerto predeterminado **`5572`**.
- Usa **`--rc-user`** y **`--rc-pass`** en lugar de **`--rc-no-auth`** en producción.
## Package Managers
- Flathub **`flatpak install com.rcloneui.RcloneUI`** o **[desde la tienda](https://flathub.org/en/apps/com.rcloneui.RcloneUI)**
- Brew **`brew install --cask rclone-ui`**
- Scoop **`scoop bucket add extras`** & **`scoop install rclone-ui`**
- Chocolatey **`choco install rclone-ui`**
- WinGet **`winget install --id=RcloneUI.RcloneUI -e`**
- NPM **`npx rclone-ui`**
<table>
<tr>
<td><img alt="Flathub" src="https://img.shields.io/badge/Flathub-000000?style=for-the-badge&logo=flathub" /></td>
<td width="700">
```bash
flatpak install com.rcloneui.RcloneUI
```
</td>
</tr>
<tr>
<td><img alt="Homebrew" src="https://img.shields.io/badge/Brew-1f1d1a?style=for-the-badge&logo=homebrew" /></td>
<td>
```bash
brew install --cask rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Scoop" src="https://img.shields.io/badge/Scoop-4d2a7a?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
scoop bucket add extras && scoop install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="Chocolatey" src="https://img.shields.io/badge/Chocolatey-42345f?style=for-the-badge&logo=chocolatey" /></td>
<td>
```bash
choco install rclone-ui
```
</td>
</tr>
<tr>
<td><img alt="WinGet" src="https://img.shields.io/badge/WinGet-0078d4?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDMuNDQ5TDkuNzUgMi4xdjkuNDUxSDBtMTAuOTQ5LTkuNjAyTDI0IDB2MTEuNEgxMC45NDlNMCAxMi42aDkuNzV2OS40NTFMMCAyMC42OTlNMTAuOTQ5IDEyLjZIMjRWMjRsLTEyLjktMS44MDEiLz48L3N2Zz4K" /></td>
<td>
```bash
winget install --id=RcloneUI.RcloneUI -e
```
</td>
</tr>
<tr>
<td><img alt="NPM" src="https://img.shields.io/badge/NPM-cb3837?style=for-the-badge&logo=npm" /></td>
<td>
```bash
npx rclone-ui
```
</td>
</tr>
<tr>
<td><a href="https://apple.com"><img alt="App Store" src="https://img.shields.io/badge/App_Store-0D96F6?style=for-the-badge&logo=app-store&logoColor=white" /></a></td>
<td><a href="https://apple.com"><b>Toca aquí para abrir Apple App Store</b></a></td>
</tr>
<tr>
<td><a href="https://google.com"><img alt="Google Play" src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white" /></a></td>
<td><a href="https://google.com"><b>Toca aquí para abrir Google Play Store</b></a></td>
</tr>
</table>
## Descargas
- **Windows** (**[Arm](https://get.rcloneui.com/win-arm)**, **[x64](https://get.rcloneui.com/win)**)
@@ -108,9 +109,14 @@ rclone rcd --rc-addr=0.0.0.0:5572 --rc-no-auth
- **Linux** (**[AppImage](https://get.rcloneui.com/linux)**, **[deb](https://get.rcloneui.com/linux-deb)**, **[rpm](https://get.rcloneui.com/linux-rpm)**)
- **Linux `Arm`** (**[AppImage](https://get.rcloneui.com/linux-arm)**, **[deb](https://get.rcloneui.com/linux-deb-arm)**, **[rpm](https://get.rcloneui.com/linux-rpm-arm)**)
## Docker/Homelab/Servidor
Controla tu servidor, homelab o el PC de tu madre con **la solución más fácil para gestionar instancias remotas de **`rclone`**.**
[**Consulta la guía para controlar instancias remotas.**](https://rcloneui.com/docs/ui/docker)
## Hoja de ruta
> Los elementos finalizados se han movido a la sección «Funciones».
### ¡Echa un vistazo a la discusión de la V3!](https://github.com/rclone-ui/rclone-ui/issues/37)
### [¡Echa un vistazo a la discusión de la V3!](https://github.com/rclone-ui/rclone-ui/issues/37)
## 1 estrella = 1 café instantáneo
<a href="https://www.star-history.com/#rclone-ui/rclone-ui&Timeline">