Docker files for NEST version 3.1 have been added to the repository.
On dockerhub now exists the image nestsim/nest:3.1. Use is with:
`docker pull nestsim/nest:3.1 `
As a new feature, NEST desktop now exists in the image and with docker-compose running in the startup directory, the various services of the NEST docker image can be easily controlled.
docker-compose up nest-server starts the NEST API server container and opens the corresponding port 5000. Test it with curl localhost:5000/api.
docker-compose up nest-desktop starts the NEST server and the NEST desktop web interface. Port 8000 is also made available. Open in the web browser: http://localhost:8000
docker-compose up nest-notebook starts a notebook server with pre-installed NEST 3.1. The corresponding URL is displayed in the console.
docker-compose up starts everything
Heads up. If the docker image is not pre-installed (docker pull nestsim/nest:3.1), "docker-compose ..." will start building the docker image from the local Docker files.
The latest image has also been updated with the new features.
Docker files for NEST version 3.1 have been added to the repository. On dockerhub now exists the image
nestsim/nest:3.1
. Use is with:As a new feature,
NEST desktop
now exists in the image and withdocker-compose
running in the startup directory, the various services of the NEST docker image can be easily controlled.docker-compose up nest-server
starts the NEST API server container and opens the corresponding port 5000. Test it withcurl localhost:5000/api
.docker-compose up nest-desktop
starts the NEST server and the NEST desktop web interface. Port 8000 is also made available. Open in the web browser:http://localhost:8000
docker-compose up nest-notebook
starts a notebook server with pre-installed NEST 3.1. The corresponding URL is displayed in the console.docker-compose up
starts everythingHeads up. If the docker image is not pre-installed (docker pull nestsim/nest:3.1), "docker-compose ..." will start building the docker image from the local Docker files.
The latest image has also been updated with the new features.