Personal Amazon price checker. Monitors prices and sends email alerts when target price is reached.
1.1K
A self-hosted Amazon price checker. Add product URLs, set a target price, and receive an email the moment the price drops to or below your threshold. Optionally get notified when an out-of-stock item becomes available again.
email-price-alert.html and email-stock-alert.html in your data folder| Variable | Default | Description |
|---|---|---|
DATABASE_FILE | kairizon.db | SQLite filename inside the data folder |
docker run -d \
--name kairizon \
-v ~/kairizon/data:/app/data \
-p 3000:3000 \
--restart unless-stopped \
ryback2501/kairizon:latest
Data is persisted in ~/kairizon/data/ by default. On first run the app creates the database and the email template files in that folder. You can customise the templates at any time — they are never overwritten on subsequent runs.
You can also set the database filename and scraper locale via environment variables:
docker run -d \
--name kairizon \
-v ~/kairizon/data:/app/data \
-p 3000:3000 \
-e DATABASE_FILE=mydata.db \
--restart unless-stopped \
ryback2501/kairizon:latest
In both examples the app runs at http://localhost:3000.
Full setup instructions, manual install options, and self-hosting notes available in the GitHub repository.
Check the Contributing section in the Readme file of the repository.
Content type
Image
Digest
sha256:2f6464e26…
Size
277.3 MB
Last updated
3 months ago
docker pull ryback2501/kairizon