Add Changedetection blueprint with Docker Compose and configuration files

- Introduced Docker Compose setup for Changedetection service, including volume configuration.
- Added logo for Changedetection.
- Created template.toml for Changedetection with default variables for configuration.
This commit is contained in:
Mauricio Siu 2025-03-30 20:28:17 -06:00
parent ec5b95a90c
commit b0edca5d4d
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,13 @@
version: '3.8'
services:
changedetection:
image: ghcr.io/dgtlmoon/changedetection.io:0.49
restart: unless-stopped
ports:
- 5000
volumes:
- datastore:/datastore
volumes:
datastore:

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,8 @@
[variables]
main_domain = "${domain}"
[config]
[[config.domains]]
serviceName = "changedetection"
port = 5000
host = "${main_domain}"