mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Remove duplicate GitLab CI entry and add Link Stack entry to meta.json * Update Movary blueprint with simplified Docker Compose and environment configuration * Add OpenGist entry to meta.json * Add Snapp self-hosted screenshot sharing service entry to meta.json * Add CommaFeed feed reader entry to meta.json * Add ConvertX media conversion service entry to meta.json * Add MeTube YouTube downloader entry to meta.json * Add Pinchflat YouTube entry to meta.json * Add yt-dlp-webui entry to meta.json * Add FlareSolverr proxy service entry to meta.json * Add Neko virtual browser entry to meta.json * Add Omni-Tools entry to meta.json * Add OpenHands AI agents platform entry to meta.json * Add Web-Check website analyzer entry to meta.json * Add DumbDrop file sharing service entry to meta.json * Add DumbAssets entry to meta.json * Add DumbPad notepad service entry to meta.json * Add DumbBudget self-hosted budget tracking service entry to meta.json * Add Tianji web analytics and uptime monitoring service entry to meta.json * Add Directory Lister entry to meta.json * Add Grimoire bookmarking app entry to meta.json * Clean Up * Update Movary blueprint with environment variables and MySQL configuration
29 lines
581 B
TOML
29 lines
581 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
admin_email = "${email}"
|
|
mysql_root_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "linkstack"
|
|
port = 80
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
TZ = "Europe/Berlin"
|
|
SERVER_ADMIN = "${admin_email}"
|
|
HTTP_SERVER_NAME = "${main_domain}"
|
|
HTTPS_SERVER_NAME = "${main_domain}"
|
|
LOG_LEVEL = "info"
|
|
PHP_MEMORY_LIMIT = "256M"
|
|
UPLOAD_MAX_FILESIZE = "8M"
|
|
MYSQL_ROOT_PASSWORD = "${mysql_root_password}"
|
|
|
|
[[config.mounts]]
|
|
volume = "linkstack-data"
|
|
target = "/htdocs"
|
|
|
|
[[config.mounts]]
|
|
volume = "mysql-data"
|
|
target = "/var/lib/mysql"
|