Skip to main content

Starting the System

Startup

The system is deployed in development mode using two compose files:

docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d

This command:

  1. Builds the frontend application
  2. Starts the backend microservices
  3. Launches PostgreSQL, MinIO, Keycloak, and Nginx
  4. Deploys API routing
Initialization Time

Allow 60–120 seconds for all components to initialize.

Accessing the System

Once the system has started successfully, the web interface will be available in your browser.

Default Credentials

ParameterValue
Loginblaster@xblast4d.ru
Passworddemo123
Security

It is recommended to change the password on first login.

Stopping the System

To stop all components, run:

docker compose down

GPU-Accelerated Startup

To use GPU acceleration (NVIDIA CUDA 11.8+), use the alternative configuration file:

docker compose -f docker-compose.yml -f docker-compose.gpu.yml up --build -d
note

GPU support requires NVIDIA drivers and the NVIDIA Container Toolkit to be installed.