# Linux

The LTO anchor 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-anchor-node/master/docker-compose.yml" -o docker-compose.yml
$ docker-compose up
```
