mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
Add Agent DVR blueprint and metadata (#337)
Introduces a new blueprint for Agent DVR, including docker-compose configuration, template variables, and an icon. Updates meta.json to register Agent DVR with relevant metadata, description, and links.
This commit is contained in:
BIN
blueprints/agentdvr/agentdvr.png
Normal file
BIN
blueprints/agentdvr/agentdvr.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 23 KiB |
22
blueprints/agentdvr/docker-compose.yml
Normal file
22
blueprints/agentdvr/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
agentdvr:
|
||||
image: mekayelanik/ispyagentdvr:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=${TIMEZONE:-America/New_York}
|
||||
- AGENTDVR_WEBUI_PORT=8090
|
||||
volumes:
|
||||
- agentdvr-config:/AgentDVR/Media/XML/
|
||||
- agentdvr-media:/AgentDVR/Media/WebServerRoot/Media/
|
||||
- agentdvr-commands:/AgentDVR/Commands/
|
||||
ports:
|
||||
- 8090
|
||||
- 3478/udp
|
||||
- 50000-50100/udp
|
||||
|
||||
volumes:
|
||||
agentdvr-config: {}
|
||||
agentdvr-media: {}
|
||||
agentdvr-commands: {}
|
||||
14
blueprints/agentdvr/template.toml
Normal file
14
blueprints/agentdvr/template.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
timezone = "America/New_York"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "agentdvr"
|
||||
port = 8090
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
TIMEZONE = "${timezone}"
|
||||
|
||||
[[config.mounts]]
|
||||
20
meta.json
20
meta.json
@@ -122,6 +122,26 @@
|
||||
"project-management"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "agentdvr",
|
||||
"name": "Agent DVR",
|
||||
"version": "latest",
|
||||
"description": "Agent DVR is a comprehensive video surveillance software with motion detection, alerts, and remote access capabilities.",
|
||||
"logo": "agentdvr.png",
|
||||
"links": {
|
||||
"github": "https://github.com/ispysoftware/AgentDVR",
|
||||
"website": "https://www.ispyconnect.com/",
|
||||
"docs": "https://www.ispyconnect.com/userguide-agent-dvr.aspx"
|
||||
},
|
||||
"tags": [
|
||||
"surveillance",
|
||||
"security",
|
||||
"video",
|
||||
"monitoring",
|
||||
"dvr",
|
||||
"camera"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "akaunting",
|
||||
"name": "Akaunting",
|
||||
|
||||
Reference in New Issue
Block a user