> For the complete documentation index, see [llms.txt](https://docs.jetadmin.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.jetadmin.io/jet-bridge-deployment/on-premise/prerequisites.md).

# Prerequisites

Review and complete the following requirements before starting the JetAdmin On-Premise installation.

## Requirements

* Command-line experience
* Experience with and setups involving Docker Engine and Docker Compose are required.

#### Supported Operating Systems

JetAdmin On-Premise supports the following operating systems:

* Ubuntu 22.04+
* Debian 13+
* CentOS Stream 9+
* RHEL 10+

### Server Requirements

* Minimum 4 CPU
* Minimum 8 GB RAM
* 50 GB available storage
* Public IP address (required for HTTPS deployments)

#### Connect to Your Server

Before running the installation commands, connect to your server using SSH.

Example:

```bash
ssh username@your-server-ip
```

If you are running JetAdmin on your local machine, open a terminal application and run the commands locally.

#### Domain Requirements (HTTPS Deployments Only)

If you plan to deploy JetAdmin with HTTPS:

* Own a domain name
* Have access to your DNS provider
* Be able to create DNS records

Examples:

* Cloudflare
* Namecheap
* GoDaddy
* Route53

### Required Software

Install Docker:

```bash
sh <(curl -s https://get.docker.com)
```

Install Docker Compose:

```bash
sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
```

Install Nginx:

```bash
sudo apt install nginx -y
```

### Required Open Ports

```bash
sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
```

Required ports:

| Port | Purpose                  |
| ---- | ------------------------ |
| 80   | Let's Encrypt validation |
| 443  | HTTPS access             |

### Verification

```bash
docker --version
docker-compose --version
nginx -v
```

<div align="left"><figure><img src="/files/hOwXx5aa2LftZcHmHpjd" alt=""><figcaption></figcaption></figure></div>


---

# 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.jetadmin.io/jet-bridge-deployment/on-premise/prerequisites.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.
