Merge branch 'master' of github.com:tborychowski/self-hosted-cookbook

* 'master' of github.com:tborychowski/self-hosted-cookbook:
  Add KaiMail into the list (#32)
  formatting
  typo
  FlareSolverr
  cloudcmd
This commit is contained in:
Dziad Borowy
2026-04-27 21:23:58 +01:00
4 changed files with 59 additions and 0 deletions

35
apps/cloud/cloudcmd.md Normal file
View File

@@ -0,0 +1,35 @@
# CloudCmd
- Fantastic web file manager with console and editor!
- Dual-panel interface.
- Easy to use and configure.
<br>
- [Homepage](https://cloudcmd.io/)
- [Github repo](https://github.com/coderaiser/cloudcmd)
![Screenshot](cloudcmd.png)
## docker-compose.yml
```yaml
services:
web:
image: coderaiser/cloudcmd
container_name: cloudcmd
environment:
- CLOUDCMD_CONTACT=false
- CLOUDCMD_COLUMNS=name-size
- CLOUDCMD_AUTH=true
- CLOUDCMD_USERNAME=admin
- CLOUDCMD_PASSWORD=admin
- CLOUDCMD_ROOT=/mnt
ports:
- 8000:8000
volumes:
- /local_path:/mnt
```

BIN
apps/cloud/cloudcmd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 595 KiB

View File

@@ -0,0 +1,19 @@
# FlareSolverr
Proxy server to bypass Cloudflare protection. Can be used by other apps (e.g. Jackett) to bypass Cloudflare's human verification.
<br>
- [Github repo](https://github.com/FlareSolverr/FlareSolverr)
## docker-compose.yml
```yml
services:
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
restart: unless-stopped
ports:
- 8191:8191
```