> For the complete documentation index, see [llms.txt](https://docs.codebattles.ru/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.codebattles.ru/en_v3/system-setup-and-installation/ustanovka/lokalnaya-ustanovka.md).

# Local Installation

{% hint style="danger" %}
For the current competitions, use the [Production mode](/en_v3/system-setup-and-installation/ustanovka/production-ustanovka.md).\
It has stricter security policies and does not contain development tools.
{% endhint %}

## Docker

{% hint style="warning" %}
If you haven't installed Docker before, please do so. Nothing will work without it [\[Installation Guide Link\]](https://docs.docker.com/engine/install/)
{% endhint %}

### Choose Your Architecture

{% tabs %}
{% tab title="x64" %}
To install, you need to download the repository and deploy the Docker Compose Container.

Downloading images from the repository:

```bash
docker compose pull
```

Start:

```sh
docker compose up
```

{% endtab %}

{% tab title="others" %}
To install, you need to download the repository and deploy the Docker Compose Container.

Building images:

```bash
docker compose build
```

Start:

```sh
docker compose up
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
To run containers in the background, use the *<mark style="color:blue;">**-d**</mark>* flag

Example:

{% code fullWidth="false" %}

```bash
docker compose up -d
```

{% endcode %}
{% endhint %}

After this, please configure the programming languages. This is described on the next page.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.codebattles.ru/en_v3/system-setup-and-installation/ustanovka/lokalnaya-ustanovka.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
