mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
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:
12
blueprints/alltube/docker-compose.yml
Normal file
12
blueprints/alltube/docker-compose.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
alltube:
|
||||
image: dnomd343/alltube:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 80
|
||||
environment:
|
||||
- TITLE=${TITLE}
|
||||
- CONVERT=${CONVERT}
|
||||
- STREAM=${STREAM}
|
||||
- REMUX=${REMUX}
|
||||
BIN
blueprints/alltube/logo.png
Normal file
BIN
blueprints/alltube/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
18
blueprints/alltube/template.toml
Normal file
18
blueprints/alltube/template.toml
Normal 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}"
|
||||
Reference in New Issue
Block a user