> For the complete documentation index, see [llms.txt](https://docs.ltonetwork.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ltonetwork.com/node/identity-node/installation-guide/linux.md).

# Linux

The LTO identity node is comprised of a set of [Docker](https://www.docker.com/) containers. Use *docker-compose* as orchestration tool.

### Install docker

{% tabs %}
{% tab title="Ubuntu" %}

```
apt install docker
```

{% endtab %}

{% tab title="RHEL/CentOS" %}

```
yum install docker
```

{% endtab %}
{% endtabs %}

Use `pip` (python package manager) to install *docker-compose*.

```
$ pip install docker-compose
```

### Start the node

```
$ curl "https://raw.githubusercontent.com/ltonetwork/lto-identity-node/master/docker-compose.yml" -o docker-compose.yml
$ docker-compose up
```
