mojtab23 / imply-docker

Imply docker container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dockerized version of the distribution available at https://imply.io/download.

Install Docker

To build an image, first download the Imply distribution from the link above, place it in the cloned repository, and then run:

export implyversion=3.1.5.2
docker build -t /imply:$implyversion --build-arg implyversion=$implyversion .

To run the image in quickstart mode (single-machine, non-clustered):

docker run -v implyData:/mnt/imply/var -p 8081-8110:8081-8110 -p 8200:8200 -p 8888:8888 -p 9095:9095 -d --name imply imply:$implyversion

To load the example data:

docker exec -it imply bin/post-index-task -f quickstart/wikipedia-index.json

To enter the container, if you want:

docker exec -it imply /bin/bash

To stop the container:

docker stop imply

About

Imply docker container


Languages

Language:Shell 75.9%Language:Dockerfile 24.1%