Files
templates/blueprints/dozzle/template.toml
Jainil Prajapati 36af3499f9 feat(dozzle): add Dozzle log viewer blueprint (#451)
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.
2025-10-14 21:30:37 -06:00

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