mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
* feat(blueprint): strapi template * feat: strapi meta.json * fix: strapi extra colon * fix: docker syntax for expose and depends_on * fix: change image base * fix: strapi healthcheck * fix: add jwt secret and admin jwt secret to strapi * fix: strapi healthcheck start interval * fix(template): strapi v5.33.0 * Update docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Co-authored-by: Mauricio Siu <siumauricio@icloud.com>
16 lines
347 B
TOML
16 lines
347 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_password = "${password:32}"
|
|
jwt_secret = "${password:32}"
|
|
admin_jwt_secret = "${password:32}"
|
|
|
|
[[config.domains]]
|
|
serviceName = "strapi"
|
|
port = 1337
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
JWT_SECRET = "${jwt_secret}"
|
|
ADMIN_JWT_SECRET = "${admin_jwt_secret}"
|