Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 2.18 KB

README.org

File metadata and controls

73 lines (53 loc) · 2.18 KB

Annotator Supreme

A server to annotate and provide computer vision datasets

Table of Contents

Quick Start

Build Annotator Supreme docker’s image

sudo ./build_annotator.sh

Starting docker containers for development

sudo docker-compose up -d

Starting docker containers for production

Disables mapping of local source folders into the containers.

sudo docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d 

Using annotator

Supreme annotator runs by default on http://localhost:4280/annotator-supreme/

Advanced Configuration

Docker container configuration can be changed in folowing the compose files:

Cassandra volume mapping

Edit the follwing lines to change the store location of the Cassandra database files on the host.

cassandra:
  volumes:
  - ./cassandra/datadir:/var/lib/cassandra

Published ports

Port mapping to expose the /annotator-supreme/ url on localhost.

nginx:
  ports:
  - "4280:80"