mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-04 05:25:22 +02:00
Added new Dozzle blueprint including docker-compose.yml for service setup, template.toml for configuration variables and mounts, image.png for logo, and updated meta.json with service metadata. Enables real-time Docker container log viewing.
19 lines
342 B
TOML
19 lines
342 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
docker_socket = "/var/run/docker.sock"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "dozzle"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
DOZZLE_USERNAME = "${username}"
|
|
DOZZLE_PASSWORD = "${password:16}"
|
|
|
|
[[config.mounts]]
|
|
source = "${docker_socket}"
|
|
target = "/var/run/docker.sock"
|
|
read_only = true
|