Skip to content

AIV 6 Docker Setup Requirements and Installation Guide (Linux)

This guide walks you through downloading, installing, and configuring AIV 6 using Docker on a Linux environment.

What You’ll Learn

  • How to download and extract the AIV 6 Docker package
  • How to run AIV using Docker Compose
  • Where to access AIV after installation

Prerequisites

Before you begin, ensure you have:

RequirementDetails
Operating SystemLinux (Ubuntu, CentOS, Debian, etc.)
DockerDocker Engine installed
Docker ComposeDocker Compose plugin installed
MemoryMinimum 16 GB RAM recommended
CPUMinimum 8 CPU cores recommended

Step 1: Download the AIV 6 Docker Package

  1. Go to the AIV download page.

  2. Click Download.

  3. The website automatically detects your operating system and selects the appropriate platform (Windows, macOS, or Linux).

  4. Verify that the correct platform is selected (Linux in this case).

  5. If you are installing AIV using Docker on Linux, ensure that Docker is selected as the installation method.

    AIV download page with form and Submit button

  6. Enter the required information in the download form:

    • Enter your Work Email in the email field.
    • Click Get OTP.
    • An OTP will be sent to the email address you provided.
    • Enter the 6-digit OTP in the Enter OTP field.
    • Click Verify OTP.
    • If the OTP expires before verification, click Resend OTP to receive a new OTP.
    • After successful verification, the message “Email verified successfully!” is displayed, and you can proceed with the remaining fields.
    • Enter your Full Name.
    • Enter your Company Name.
    • Select For business use from the Usage Type dropdown.
    • Select your Country Code and enter your Phone Number (optional).
  7. Select the checkbox to confirm that you have read and accepted the AIV EULA.

  8. By selecting the checkbox, you also agree to receive communications from AIV.

  9. Click Download Docker and wait for the Docker package to finish downloading. Once the download is complete, extract the ZIP file to a folder of your choice (for example, /opt/aiv/docker-aiv-main).


Step 2: Run Docker Compose

  1. Open your terminal and log in to your Linux server.

  2. Navigate to the directory where you extracted the AIV package. For example, if you extracted it to /opt/aiv/docker-aiv-main:

    cd /opt/aiv/docker-aiv-main
  3. Run the following command to start AIV and all its associated services in detached mode:

    docker compose up -d
  4. Docker will begin pulling the required images (such as aiv-ai, aiv, pqadmin, and postgres) and starting the containers.

  5. Wait for all containers to start. When you see messages indicating the containers are Started and Healthy, the setup is complete.

Access AIV

Once the containers are successfully running, open your web browser and go to:

http://<your-server-ip>:8080/aiv

(If you are running this locally on a Linux desktop, you can use http://localhost:8080/aiv)

You can now start using AIV.


System Requirements Summary

ComponentMinimum
OSLinux
DockerDocker Engine & Compose
RAM16 GB
CPU8 cores

Important Notes

  • Ensure your user has sufficient permissions to run Docker commands, or run them as root (using sudo).
  • To stop the application, you can run docker compose down from within the extracted directory.