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:
- Starts services from the container images pulled from the Container Registry
- Launches PostgreSQL, MinIO, Keycloak, and Nginx
- Deploys API routing
- 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 on127.0.0.1:8001 - MinIO API and MinIO Console are usually available on
127.0.0.1:9000and127.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.