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:
- Builds the frontend application
- Starts the backend microservices
- Launches PostgreSQL, MinIO, Keycloak, and Nginx
- 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
| Parameter | Value |
|---|---|
| Login | blaster@xblast4d.ru |
| Password | demo123 |
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.