Add blueprints for Adminer, Affine Pro, and AllTube with Docker Compose and metadata

- Added Adminer entry in meta.json with detailed description, logo, and relevant links.
- Introduced Docker Compose configurations for Adminer, Affine Pro, and AllTube services.
- Created template.toml files for each service with default variables for configuration.
This commit is contained in:
Mauricio Siu
2025-03-30 13:36:00 -06:00
parent ee91373ea7
commit a679656987
10 changed files with 230 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
[variables]
main_domain = "${domain}"
title = "My AllTube Site"
convert = "true"
stream = "true"
remux = "true"
[config]
[[config.domains]]
serviceName = "alltube"
port = 80
host = "${main_domain}"
[config.env]
TITLE = "${title}"
CONVERT = "${convert}"
STREAM = "${stream}"
REMUX = "${remux}"