mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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.
22 lines
525 B
YAML
22 lines
525 B
YAML
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: {} |