diff --git a/README.md b/README.md index fc0495f..9eb0d1f 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and # Cloud & File Sharing +- [CloudCmd](apps/cloud/cloudcmd.md) - [Filebrowser](apps/cloud/filebrowser.md) - [FileRun](apps/cloud/filerun.md) - [NextCloud](apps/cloud/nextcloud.md) diff --git a/apps/cloud/cloudcmd.md b/apps/cloud/cloudcmd.md new file mode 100644 index 0000000..2389da6 --- /dev/null +++ b/apps/cloud/cloudcmd.md @@ -0,0 +1,35 @@ +# CloudCmd + +- Fantastic web file manager with console and editor! +- Dual-panel interface. +- Easy to use and configure. + + +
+ +- [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 +``` diff --git a/apps/cloud/cloudcmd.png b/apps/cloud/cloudcmd.png new file mode 100644 index 0000000..98e3e7e Binary files /dev/null and b/apps/cloud/cloudcmd.png differ