This repo contains the neuroglancer deployment
- Install the docker engine
- Clone the repo
- Run the following command to build the docker image
cd applications/neuroglancer
sudo docker build -t neuroglancer .
- Run the following command to start the docker container
sudo docker run -it --rm -d -p 8080:80 neuroglancer
- Open your browser and navigate to
http://localhost:8080
- You should see the neuroglancer interface
- To stop the container run the following command
sudo docker stop $(sudo docker ps -a -q --filter ancestor=neuroglancer --format="{{.ID}}")