This repository contains Dockerfiles and tooling for building Livegrep images.
For a guided walkthrough, read the post on getting Faster GitHub Search with Livegrep.
-
Base Image
You can build a base image from the tooling in the
base/
directory.A pre-built image is available on Docker Hub as
alexdebrie/livegrep-base:1
. You can use it as a base image in your Dockerfile:FROM alexdebrie/livegrep-base:1 ...
Or run it on your command line:
docker run -it alexdebrie/livegrep-base:1 /bin/bash
-
Codesearch image
The tooling in the
codesearch/
directory will help you build an image with a Codesearch index for serving.Check out the instructions in that directory for more information.
-
Livegrep image
The tooling in the
livegrep/
directory will help you build an image to run the Livegrep web UI.Check out the instructions in that directory for more information.