mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Cockpit service, including environment variables and volume configuration. - Added logo for Cockpit. - Created template.toml for Cockpit with default variables for configuration. - Updated meta.json to include Cockpit with detailed description, logo, and relevant links.
15 lines
246 B
TOML
15 lines
246 B
TOML
[variables]
|
|
SALT = "${password:32}"
|
|
MONGO_PASSWORD = "${password:16}"
|
|
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "cockpit"
|
|
port = 80
|
|
host = "${domain}"
|
|
|
|
[config.env]
|
|
SALT = "${SALT}"
|
|
MONGO_PASSWORD = "${MONGO_PASSWORD}"
|
|
MONGO_USERNAME = "mongo" |