Skip to main content

Starting the System

Startup

The system is started using the base compose file and the operational deployment configuration:

docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d

This command:

  1. Starts services from the container images pulled from the Container Registry
  2. Launches PostgreSQL, MinIO, Keycloak, and Nginx
  3. Deploys API routing
  4. Starts auxiliary services described in the compose configuration
Initialization Time

Allow 60–120 seconds for all components to initialize.

Accessing the System

After a successful startup, the main access points are:

  • The web interface is usually published on 127.0.0.1:3000, and the API Gateway on 127.0.0.1:8001
  • MinIO API and MinIO Console are usually available on 127.0.0.1:9000 and 127.0.0.1:9001
  • Adminer, if enabled, is usually available on 127.0.0.1:8080

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.prod.yml -f docker-compose.gpu.yml up -d
note

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