> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oasm.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Get started with OASM quickly using Docker - setup guide and prerequisites

Get up and running with OASM quickly using Docker.

***

## 🛠 Prerequisites

Ensure your environment meets the following requirements:

* [Docker](https://docs.docker.com/engine/install/)
* [Docker Compose](https://docs.docker.com/compose)
* **Make**

**Minimum system requirements:**

* **CPU:** 4 cores
* **RAM:** 4 GB
* **Disk:** 20 GB free space

***

## 🚀 Setup

Follow the steps below to deploy the application locally:

<Steps>
  <Step title="Clone the repository">
    ```bash theme={null}
    git clone https://github.com/oasm-platform/oasm-docker.git
    cd oasm-docker
    ```
  </Step>

  <Step title="Configure environment variables">
    ```bash theme={null}
    cp .env.example .env
    ```

    Update the `.env` file if needed to match your environment.
  </Step>

  <Step title="Start the application">
    ```bash theme={null}
    make
    ```

    This will build and start all required services.
  </Step>
</Steps>

***

## 🌐 Access the Web UI

<Card title="Web UI" icon="arrow-up-right" horizontal href="/web-ui">
  Open [http://localhost:6276](http://localhost:6276) to access the application interface.
</Card>

***

<Info>
  The first startup may take a few minutes as Docker images are built and initialized.
</Info>
