mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Enhance meta.json: format tag lists for consistency, add new entries for KaraKeep, FreshRSS, and Movary with detailed descriptions and links. * Update blueprints/freshrss/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/karakeep/docker-compose.yml * Update blueprints/movary/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
22 lines
466 B
TOML
22 lines
466 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
tmdb_api_key = ""
|
|
mysql_password = "${password:32}"
|
|
mysql_root_password = "${password:32}"
|
|
|
|
[config.env]
|
|
MOVARY_VERSION = "latest"
|
|
MYSQL_VERSION = "8.0"
|
|
TMDB_API_KEY = "${tmdb_api_key}"
|
|
MYSQL_PASSWORD = "${mysql_password}"
|
|
MYSQL_ROOT_PASSWORD = "${mysql_root_password}"
|
|
APP_URL = "http://${main_domain}"
|
|
APP_ENV = "production"
|
|
|
|
[config]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "movary"
|
|
port = 8080
|
|
host = "${main_domain}" |