master
isido993 7 years ago
parent fc0413d581
commit 732d97a135

@ -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 - Ambar supports all popular document formats, performs OCR if needed
- Tag your documents - Tag your documents
- Use a simple REST Api to integrate Ambar into your workflow - Use a simple REST Api to integrate Ambar into your workflow
- Ambar includes a native health monitoring with [SLAO.IO](https://slao.io)
## Features ## Features
### Search ### 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) * Fuzzy Search (John~3)
* Phrase Search ("John Smith") * 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 **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/) *Docker images can be found on [Docker Hub](https://hub.docker.com/u/ambar/)*
* Tutorial on how to build images from scratch will be available soon
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 ## FAQ
### Is it open-source? ### Is it open-source?
Yes, it's fully open-source. Yes, it's fully open-source now.
### Is it free? ### Is it free?
Yes, it is forever free and open-source. Yes, it is forever free.
### Does it perform OCR? ### 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 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

@ -6,7 +6,7 @@ services:
restart: always restart: always
networks: networks:
- internal_network - internal_network
image: ambar/ambar-mongodb:latest image: repo.ambar.cloud:443/ambar-mongodb:2.1
environment: environment:
- cacheSizeGB=2 - cacheSizeGB=2
volumes: volumes:
@ -17,7 +17,7 @@ services:
restart: always restart: always
networks: networks:
- internal_network - internal_network
image: ambar/ambar-es:latest image: repo.ambar.cloud:443/ambar-es:2.1
expose: expose:
- "9200" - "9200"
environment: environment:
@ -38,7 +38,7 @@ services:
restart: always restart: always
networks: networks:
- internal_network - internal_network
image: ambar/ambar-rabbit:latest image: repo.ambar.cloud:443/ambar-rabbit:2.1
hostname: rabbit hostname: rabbit
expose: expose:
- "15672" - "15672"
@ -51,7 +51,7 @@ services:
- net.core.somaxconn=1024 - net.core.somaxconn=1024
networks: networks:
- internal_network - internal_network
image: ambar/ambar-redis:latest image: repo.ambar.cloud:443/ambar-redis:2.1
expose: expose:
- "6379" - "6379"
serviceapi: serviceapi:
@ -67,7 +67,7 @@ services:
restart: always restart: always
networks: networks:
- internal_network - internal_network
image: ambar/ambar-serviceapi:latest image: repo.ambar.cloud:443/ambar-serviceapi:2.1
expose: expose:
- "8081" - "8081"
environment: environment:
@ -86,7 +86,7 @@ services:
restart: always restart: always
networks: networks:
- internal_network - internal_network
image: ambar/ambar-webapi:latest image: repo.ambar.cloud:443/ambar-webapi:2.1
expose: expose:
- "8080" - "8080"
ports: ports:
@ -105,7 +105,7 @@ services:
depends_on: depends_on:
webapi: webapi:
condition: service_healthy condition: service_healthy
image: ambar/ambar-frontend:latest image: repo.ambar.cloud:443/ambar-frontend:2.1
restart: always restart: always
networks: networks:
- internal_network - internal_network
@ -119,7 +119,7 @@ services:
depends_on: depends_on:
serviceapi: serviceapi:
condition: service_healthy condition: service_healthy
image: ambar/ambar-pipeline:latest image: repo.ambar.cloud:443/ambar-pipeline:2.1
restart: always restart: always
networks: networks:
- internal_network - internal_network
@ -131,7 +131,7 @@ services:
depends_on: depends_on:
serviceapi: serviceapi:
condition: service_healthy condition: service_healthy
image: ambar/ambar-local-crawler image: repo.ambar.cloud:443/ambar-local-crawler:2.1
restart: always restart: always
networks: networks:
- internal_network - internal_network

Loading…
Cancel
Save