Simply watch URLs and get notified when they change.
Security Notice: This is a personal tool designed for local/private network use. Not recommended for production environments.
docker run -e URLS="https://example.com" \
-e EMAIL_USER="your@email.com" \
-e EMAIL_PASSWORD="password" \
-e RECIPIENT_EMAIL="notify@email.com" \
ghcr.io/u8slvn/eye-see-you:latestversion: '3'
services:
eye-see-you:
image: ghcr.io/u8slvn/eye-see-you:latest
container_name: eye-see-you
environment:
- URLS=https://example.com,https://another-site.com
- CHECK_INTERVAL=300
- EMAIL_USER=your@email.com
- EMAIL_PASSWORD=your-password
- RECIPIENT_EMAIL=notify@email.com
restart: unless-stoppedEnvironment Variables
URLS: Comma-separated URLs to monitorCHECK_INTERVAL: Seconds between checks (default: 300)EMAIL_USER: Your emailEMAIL_PASSWORD: Your email passwordRECIPIENT_EMAIL: Where to send alertsSMTP_SERVER: SMTP server (default: smtp.gmail.com)SMTP_PORT: SMTP port (default: 587)