Running on Docker
See the available Docker container image version at the following URL:
Pulling Docker container
You can pull the Docker container image with the following command:
$ docker pull bayardsearch/bayard:latest
Running Docker container
You can run the Docker container image with the following command:
$ docker run --rm --name bayard \
-p 5000:5000 -p 7000:7000 -p 9000:9000 \
bayardsearch/bayard:latest \
--data-directory=/tmp/bayard \
--schema-file /etc/bayard/schema.json \
--tokenizer-file /etc/bayard/tokenizer.json \
1