> For the complete documentation index, see [llms.txt](https://docs.cryptonode.id/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cryptonode.id/en/testnet/aztec-network/installation.md).

# Installation

## 🖥️System Requirements

\- OS: Linux\
\- CPU: 8 Core(s)\
\- Memory: 16GB\
\- Storage: 1TB SSD\
\- Network: 25Mbps Minimum

## 💭Prerequisites

Have Docker installed in your system, if you don't, please follow [this guide](/en/basics/server-preparation.md#install-docker-optional)

{% hint style="warning" %}
For better performance, We suggest you to run your own RPC.

You can follow our guide to install [Installation](/en/testnet/ethereum-and-arbitrum-sepolia/installation.md#ethereum) Sepolia RPC.
{% endhint %}

## 🛠️Installation <a href="#install-binary" id="install-binary"></a>

{% hint style="success" %}
This guide is created under the assumption you are using Ubuntu 22.04 LTS\
If you use other OS, please modify the commands accordingly
{% endhint %}

1. Install <kbd>aztec</kbd> cli

   <pre class="language-bash"><code class="lang-bash"><strong>bash -i &#x3C;(curl -s https://install.aztec.network)
   </strong></code></pre>
2. Create folder for easier management

   ```bash
   mkdir -p aztec-docker/data
   ```
3. Go inside the folder and create docker-compose.yml

   ```bash
   cd aztec-docker && vi docker-compose.yml
   ```
4. Put this <kbd>yml</kbd> content in <kbd>docker-compose.yml</kbd> and modify accordingly

   ```yaml
   name: aztec-sequencer
   services:
     aztec-sequencer:
       container_name: aztec-sequencer
       restart: unless-stopped
       image: aztecprotocol/aztec:alpha-testnet
       environment:
         ETHEREUM_HOSTS: "<your ETH RPC>"
         L1_CONSENSUS_HOST_URLS: "<your ETH Beacon>"
         DATA_DIRECTORY: /data
         VALIDATOR_PRIVATE_KEY: 0x<your private key hash>
         COINBASE: 0x<your address>
         P2P_IP: <your IP address>
         LOG_LEVEL: debug
       entrypoint: >
         sh -c 'node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --network alpha-testnet start --node --archiver --sequencer'
       ports:
         - 40400:40400/tcp
         - 40400:40400/udp
         - 8080:8080
       volumes:
         - ./data:/data
   ```
5. Send some <kbd>Sepolia ETH</kbd> to your wallet address to get started
6. Start the service with this command

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

{% hint style="success" %}
To check log, run&#x20;

```bash
docker compose logs -fn 100
```

To stop:

```bash
docker compose down
```

{% endhint %}


---

# 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.cryptonode.id/en/testnet/aztec-network/installation.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.
