Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 653 Bytes

readme.md

File metadata and controls

24 lines (20 loc) · 653 Bytes

Neuroglancer Deployment

This repo contains the neuroglancer deployment

Local usage

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