Easy to use web database for brain statistical maps, atlases and parcellation maps.
git clone https://github.com/<your_username>/NeuroVault/Users/<your_username>/... - otherwise docker-machine will not be able to mount code directories and may fail silently.brew update && brew install docker docker-machine docker-composedocker-machine create --driver virtualbox nv && docker-machine start nv && eval "$(docker-machine env nv)")docker-compose up -d
The webpage will be available at 127.0.0.1 (unless you are using docker-machine - then run docker-machine ip nv to figure out which IP address you need to use; remember that your enviroment variables need to be properly configured by running eval "$(docker-machine env nv)").
Initially, some data will be available by default with username/password neurovault/neurovault and neurovault2/neurovault2.
You can also run the server in non detached mode (shows all the logs in realtime).
docker-compose up
docker-compose stop
After making changes to the code you need to restart the server (but just the uwsgi and celery components):
docker-compose restart nginx uwsgi worker
If you would like to reset the server and clean the database:
docker-compose stop
docker-compose rm
docker-compose up
docker-compose run --rm uwsgi python manage.py shell
docker-compose run --rm uwsgi python manage.py test
If you add a dependency (e.g., a new pip install) or modify the Dockerfile in any way, you will need to rebuild the docker image:
docker build -t neurovault/neurovault .
To use pycortex you will need a different image (that includes FreeSurfer). Just change "neurovault/neurovault" with "neurovault/neurovault_fs" in docker-compose.yml. This image is significantly bigger and will take longer to download.
You can also build it locally
docker build -t neurovault/neurovault_fs -f fs_docker/Dockerfile .
Pay special close attention that the command above ends with a . to indicate the present working directory, the base of the code repository.
Content type
Image
Digest
sha256:93ade8ef7…
Size
4.2 GB
Last updated
almost 7 years ago
docker pull neurovault/neurovault_fs