# Docker If [Docker](https://docs.docker.com/) is available on your system, you can use the neurocaps Docker image, which includes the demos and configures a headless display for VTK. To pull the Docker image: ```bash docker pull donishadsmith/neurocaps && docker tag donishadsmith/neurocaps neurocaps ``` The image can be run as: 1. An interactive bash session (default): ```bash docker run -it neurocaps ``` 2. A Jupyter Notebook with port forwarding: ```bash docker run -it -p 9999:9999 neurocaps notebook ```