mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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.
This commit is contained in:
8
blueprints/dozzle/docker-compose.yml
Normal file
8
blueprints/dozzle/docker-compose.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
services:
|
||||
dozzle:
|
||||
image: amir20/dozzle:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
expose:
|
||||
- 8080
|
||||
BIN
blueprints/dozzle/image.png
Normal file
BIN
blueprints/dozzle/image.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 161 KiB |
18
blueprints/dozzle/template.toml
Normal file
18
blueprints/dozzle/template.toml
Normal file
@@ -0,0 +1,18 @@
|
||||
[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
|
||||
17
meta.json
17
meta.json
@@ -1715,6 +1715,23 @@
|
||||
"email"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "dozzle",
|
||||
"name": "Dozzle",
|
||||
"version": "latest",
|
||||
"description": "Dozzle is a lightweight, real-time log viewer for Docker containers.",
|
||||
"logo": "image.png",
|
||||
"links": {
|
||||
"github": "https://github.com/amir20/dozzle",
|
||||
"website": "https://dozzle.dev",
|
||||
"docs": "https://dozzle.dev/docs"
|
||||
},
|
||||
"tags": [
|
||||
"monitoring",
|
||||
"logs",
|
||||
"docker"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "dragonfly-db",
|
||||
"name": "Dragonfly",
|
||||
|
||||
Reference in New Issue
Block a user