mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Coral service, including environment variables for MongoDB and Redis configuration. - Added logo for Coral. - Created template.toml for Coral with default variables for configuration. - Updated meta.json to include Coral with detailed description, logo, and relevant links.
20 lines
508 B
TOML
20 lines
508 B
TOML
[variables]
|
|
DOMAIN = "${domain}"
|
|
MONGO_PASSWORD = "${password:16}"
|
|
REDIS_PASSWORD = "${password:16}"
|
|
SIGNING_SECRET = "${password:45}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "coral"
|
|
port = 3000
|
|
host = "${DOMAIN}"
|
|
|
|
[config.env]
|
|
MONGODB_URI = "mongodb://mongo:${MONGO_PASSWORD}@mongo:27017"
|
|
REDIS_URI = "redis://default:${REDIS_PASSWORD}@redis:6379"
|
|
SIGNING_SECRET = "${SIGNING_SECRET}"
|
|
NODE_ENV = "production"
|
|
MONGO_PASSWORD = "${MONGO_PASSWORD}"
|
|
REDIS_PASSWORD = "${REDIS_PASSWORD}"
|
|
MONGO_USER = "mongo" |