mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
15 lines
299 B
YAML
15 lines
299 B
YAML
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 |