Docker container for NEST Desktop and its backends, e.g. NEST Simulator.
For more information, please see the User Documentation Page of NEST Desktop as well as the User Documentation Page of NEST Simulator.
- docker-compose
apt install docker.io docker-compose
service docker start
sudo groupadd docker
sudo usermod -aG docker $USER
NEST Desktop and NEST Simulator are built in different images.
Multiple containers can be managed with docker-compose
.
The Docker Compose is a tool for multi-container Docker applications. It needs a YAML file to configure services (NEST Desktop and NEST Simulator).
Start services with a configuration file in the same directory (By default: docker-compose.yml
).
docker-compose up
Hint: Use --detach
when it should run in the background, and no logs will be displayed and followed.
For more information, read the official documentation.
Start a single service, e.g. nest-simulator
.
docker-compose start nest-simulator
Stop services (but still up).
docker-compose stop
Restart services.
docker-compose restart
Shut down services.
docker-compose down
Pull new container and then create the services.
docker-compose pull
docker-compose down
docker-compose up --detach