mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
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:
parent
addc92abb4
commit
f855b8f927
15
blueprints/cloudcommander/docker-compose.yml
Normal file
15
blueprints/cloudcommander/docker-compose.yml
Normal 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
|
BIN
blueprints/cloudcommander/logo.png
Normal file
BIN
blueprints/cloudcommander/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
13
blueprints/cloudcommander/template.toml
Normal file
13
blueprints/cloudcommander/template.toml
Normal file
@ -0,0 +1,13 @@
|
||||
[variables]
|
||||
USERNAME = "user"
|
||||
PASSWORD = "${password:16}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "cloudcmd"
|
||||
port = 80
|
||||
host = "${domain}"
|
||||
|
||||
[config.env]
|
||||
USERNAME = "${USERNAME}"
|
||||
PASSWORD = "${PASSWORD}"
|
51
meta.json
51
meta.json
@ -2365,5 +2365,56 @@
|
||||
"Role-Based Access",
|
||||
"Document Management"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "classicpress",
|
||||
"name": "ClassicPress",
|
||||
"version": "php8.3-apache",
|
||||
"description": "ClassicPress is a community-led open source content management system for creators. It is a fork of WordPress 6.2 that preserves the TinyMCE classic editor as the default option.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/ClassicPress/",
|
||||
"website": "https://www.classicpress.net/",
|
||||
"docs": "https://docs.classicpress.net/"
|
||||
},
|
||||
"tags": [
|
||||
"cms",
|
||||
"wordpress",
|
||||
"content-management"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "cloud9",
|
||||
"name": "Cloud9",
|
||||
"version": "1.29.2",
|
||||
"description": "Cloud9 is a cloud-based integrated development environment (IDE) designed for developers to code, build, and debug applications collaboratively in real time.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/c9",
|
||||
"website": "https://aws.amazon.com/cloud9/",
|
||||
"docs": "https://docs.aws.amazon.com/cloud9/"
|
||||
},
|
||||
"tags": [
|
||||
"ide",
|
||||
"development",
|
||||
"cloud"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "cloudcommander",
|
||||
"name": "Cloud Commander",
|
||||
"version": "18.5.1",
|
||||
"description": "Cloud Commander is a file manager for the web. It includes a command-line console and a text editor. Cloud Commander helps you manage your server and work with files, directories and programs in a web browser.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/coderaiser/cloudcmd",
|
||||
"website": "https://cloudcmd.io",
|
||||
"docs": "https://cloudcmd.io/#install"
|
||||
},
|
||||
"tags": [
|
||||
"file-manager",
|
||||
"web-based",
|
||||
"console"
|
||||
]
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue
Block a user