Add Cloud Commander blueprint with Docker Compose and configuration files

- Introduced Docker Compose setup for Cloud Commander service, including environment variables and volume configuration.
- Added logo for Cloud Commander.
- Created template.toml for Cloud Commander with default variables for configuration.
- Updated meta.json to include Cloud Commander with detailed description, logo, and relevant links.
This commit is contained in:
Mauricio Siu
2025-03-30 20:44:33 -06:00
parent addc92abb4
commit f855b8f927
4 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
version: "3"
services:
cloudcmd:
image: coderaiser/cloudcmd:18.5.1
ports:
- "80"
environment:
- CLOUDCMD_ROOT=/mnt/fs
- CLOUDCMD_AUTH=true
- CLOUDCMD_USERNAME=${USERNAME}
- CLOUDCMD_PASSWORD=${PASSWORD}
volumes:
- /root:/root
- /:/mnt/fs