mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-30 06:22:13 -05:00
- Added Flowise metadata to meta.json with relevant details including ID, name, version, description, logo, links, and tags. - Created Docker Compose file for Flowise, defining services for Redis and Flowise, including health checks and environment variables. - Added image for Flowise logo. - Created template.toml for Flowise configuration, specifying variables, domains, environment variables, and mounts.
25 lines
508 B
TOML
25 lines
508 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
jwt_secret = "${password:32}"
|
|
jwt_refresh_secret = "${password:32}"
|
|
express_secret = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "flowise"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
JWT_AUTH_TOKEN_SECRET = "${jwt_secret}"
|
|
JWT_REFRESH_TOKEN_SECRET = "${jwt_refresh_secret}"
|
|
EXPRESS_SESSION_SECRET = "${express_secret}"
|
|
|
|
[[config.mounts]]
|
|
name = "flowise_data"
|
|
mountPath = "/root/.flowise"
|
|
|
|
[[config.mounts]]
|
|
name = "redis_data"
|
|
mountPath = "/data"
|