mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-03 21:15:24 +02:00
* feat(mixpost): add Mixpost blueprint with Docker Compose, template, logo, and metadata * chore(mixpost): add environment variable placeholders to mixpost service in docker-compose.yml * chore(meta): add missing newline at end of meta.json * Update configuration values to use quotes * Update blueprints/mixpost/template.toml --------- Co-authored-by: Sunil Shrestha <sunil.shrestha@tekkon.com.np> Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
24 lines
430 B
TOML
24 lines
430 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
mx_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "mixpost"
|
|
port = 80
|
|
host = "${main_domain}"
|
|
|
|
|
|
[config.env]
|
|
APP_NAME="Mixpost"
|
|
APP_KEY="base64:ygtEUxD0fB3vUchihbUYqUzN57rfNi9ER5alJ98dWiA="
|
|
APP_DEBUG="false"
|
|
APP_DOMAIN="${main_domain}"
|
|
APP_URL="http://${APP_DOMAIN}"
|
|
DB_DATABASE="mixpost_db"
|
|
DB_USERNAME="mixpost_user"
|
|
DB_PASSWORD="${mx_password}"
|
|
|
|
|
|
[[config.mounts]]
|