Skip to content

Commit 884e74b

Browse files
committed
add changedetection
1 parent 1636f05 commit 884e74b

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ To stop a deployment run the following command:
1919

2020
| Name | Architecture | Type |
2121
|----------|----------|----------|
22+
| changedetection | amd64, arm64 | Standalone |
2223
| emby-server | amd64 | Standalone |
2324
| emby-server-arm64 | arm64 | Standalone |
2425
| fastapi | amd64, arm64 | Standalone |

changedetection/.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SERVICE_PORT=3000

changedetection/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Web Site Change Detection.
2+
3+
Detect website content changes and perform meaningful actions - trigger notifications via Discord, Email, Slack, Telegram, API calls and many more.
4+
5+
More info [here](https://github.com/dgtlmoon/changedetection.io/tree/master)

changedetection/docker-compose.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: '3.2'
2+
services:
3+
changedetection:
4+
image: ghcr.io/dgtlmoon/changedetection.io
5+
container_name: changedetection
6+
hostname: changedetection
7+
volumes:
8+
- ./changedetection-data:/datastore
9+
ports:
10+
- ${SERVICE_PORT}:5000
11+
restart: unless-stopped

0 commit comments

Comments
 (0)