From 732d97a13557ec21bc586ac28028731e95e99004 Mon Sep 17 00:00:00 2001 From: isido993 Date: Sat, 22 Jun 2019 09:25:05 +0000 Subject: [PATCH] 2.1 --- README.md | 28 +++++++++++++++++++++------- docker-compose.yml | 18 +++++++++--------- 2 files changed, 30 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 2fc5018..ef4568a 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,12 @@ Ambar defines a new way to implement a full-text document search into yor workfl - Ambar supports all popular document formats, performs OCR if needed - Tag your documents - Use a simple REST Api to integrate Ambar into your workflow +- Ambar includes a native health monitoring with [SLAO.IO](https://slao.io) ## Features ### Search -[Tutorial: Mastering Ambar Search Queries](https://ambar.cloud/blog/2017/03/24/mastering-search-queries/) +[Tutorial: Mastering Ambar Search Queries](https://blog.ambar.cloud/mastering-ambar-search-queries/) * Fuzzy Search (John~3) * Phrase Search ("John Smith") @@ -54,19 +55,32 @@ Crawling is automatic, no schedule is needed since the crawler monitors fs event **Notice**: Ambar requires Docker to run, it can't run w/o Docker -You can build Docker images by yourself or buy prebuilt Docker images for **$50**. +Just follow the [installation instruction](https://ambar.cloud/docs/installation/) -* Installation instruction for prebuilt images can be found [here](https://ambar.cloud/docs/installation/) -* Tutorial on how to build images from scratch will be available soon +*Docker images can be found on [Docker Hub](https://hub.docker.com/u/ambar/)* -If you want to see how Ambar works w/o installing it, try our [live demo](https://app.ambar.cloud/). No signup required. +## Monitoring with [SLAO.IO](https://slao.io) + +Ambar 2.1.19 includes a native monitoring for its rest APIs. Check out the [installation instruction](https://ambar.cloud/docs/installation/) for more details. + +## Support + +Ambar is fully open-source and free to use, however you can get dedicated support from our team for a fee: + +- Install & Configure Ambar on your machine - 999$ +- Mount external data source - 99$ +- Add automatic tagging rule - 299$ +- Add password protection to Ambar UI - 299$ +- Add custom file extractor - 599$ +- Dedicated support - 199$/hour +- Custom features development - 299$/hour ## FAQ ### Is it open-source? -Yes, it's fully open-source. +Yes, it's fully open-source now. ### Is it free? -Yes, it is forever free and open-source. +Yes, it is forever free. ### Does it perform OCR? Yes, it performs OCR on images (jpg, tiff, bmp, etc) and PDF's. OCR is perfomed by well-known open-source library Tesseract. We tuned it to achieve best perfomance and quality on scanned documents. You can easily find all files on which OCR was perfomed with `tags:ocr` query diff --git a/docker-compose.yml b/docker-compose.yml index 2bc9ca5..fe120c2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: restart: always networks: - internal_network - image: ambar/ambar-mongodb:latest + image: repo.ambar.cloud:443/ambar-mongodb:2.1 environment: - cacheSizeGB=2 volumes: @@ -17,7 +17,7 @@ services: restart: always networks: - internal_network - image: ambar/ambar-es:latest + image: repo.ambar.cloud:443/ambar-es:2.1 expose: - "9200" environment: @@ -38,7 +38,7 @@ services: restart: always networks: - internal_network - image: ambar/ambar-rabbit:latest + image: repo.ambar.cloud:443/ambar-rabbit:2.1 hostname: rabbit expose: - "15672" @@ -51,7 +51,7 @@ services: - net.core.somaxconn=1024 networks: - internal_network - image: ambar/ambar-redis:latest + image: repo.ambar.cloud:443/ambar-redis:2.1 expose: - "6379" serviceapi: @@ -67,7 +67,7 @@ services: restart: always networks: - internal_network - image: ambar/ambar-serviceapi:latest + image: repo.ambar.cloud:443/ambar-serviceapi:2.1 expose: - "8081" environment: @@ -86,7 +86,7 @@ services: restart: always networks: - internal_network - image: ambar/ambar-webapi:latest + image: repo.ambar.cloud:443/ambar-webapi:2.1 expose: - "8080" ports: @@ -105,7 +105,7 @@ services: depends_on: webapi: condition: service_healthy - image: ambar/ambar-frontend:latest + image: repo.ambar.cloud:443/ambar-frontend:2.1 restart: always networks: - internal_network @@ -119,7 +119,7 @@ services: depends_on: serviceapi: condition: service_healthy - image: ambar/ambar-pipeline:latest + image: repo.ambar.cloud:443/ambar-pipeline:2.1 restart: always networks: - internal_network @@ -131,7 +131,7 @@ services: depends_on: serviceapi: condition: service_healthy - image: ambar/ambar-local-crawler + image: repo.ambar.cloud:443/ambar-local-crawler:2.1 restart: always networks: - internal_network