Skip to content

Docker AIV Installation

This document provides a step-by-step tutorial for installing the AIV application using Docker Desktop. It covers prerequisites, Docker commands, and visuals to help users set up AIV in their local environment efficiently.

Objective

The objective of this document is to guide users through the process of installing AIV on Docker Desktop.

Installation Steps

  1. Open Terminal / Command Prompt: Navigate to the root folder of the application (e.g., docker-aiv-main) using the terminal.

  2. Run Docker Compose: Execute the following command to start the AIV containers in detached mode: docker compose up -d

    This command will:

    • Build the Docker images (if not already built)
    • Start all necessary services defined in the docker-compose.yml file
    • Run containers in the background (detached mode)
  3. Access the AIV Application: Open your browser and go to: http://localhost:8080/aiv

  4. Stopping the Containers: When you are done, you can stop and remove all running containers by executing: docker compose down