# Build the Docker Image locally

To build the image locally `docker` and `git` should already be installed on your machine. `git` comes installed with most Linux distributions; if you OS doesn't include it follow the instructions in <https://git-scm.com/book/en/v2/Getting-Started-Installing-Git>. \
For Docker please follow <https://docs.docker.com/get-docker/> for instruction on how to install it on your OS.

Building T4L3NT node Docker image locally requires 15Gb of free storage space due to the additional images that needs to be downloaded during the Docker build process.

1. Clone the [T4L3NT Github](https://github.com/Decentralized-Pictures/T4L3NT) repository

```bash
git clone https://github.com/Decentralized-Pictures/T4L3NT.git
```

2\. Build the Docker image\
This step can take 15+ minutes depending on how your internet download speed and how performant your machine is.

```
docker build . -t tlnt-node
```

3\. Run the Docker container\
You can use the same command as in [](https://decentralized-pictures-foundatio.gitbook.io/dcp-docs-v0.0.1/t4l3nt-net/blockchain/setting-up-a-t4l3nt-node "mention") but use `tlnt-node:latest`  as the Docker image name for the container&#x20;

```
docker run -d \
    -p 8733:8733 \
    -p 9733:9733 \
    --name t4l3nt-node \
    -v tlnt-data:/home/tlnt \
    tlnt-node:latest
```

4\. Continue with the instructions in [](https://decentralized-pictures-foundatio.gitbook.io/dcp-docs-v0.0.1/t4l3nt-net/blockchain/setting-up-a-t4l3nt-node "mention")&#x20;


---

# Agent Instructions: 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:

```
GET https://decentralized-pictures-foundatio.gitbook.io/dcp-docs-v0.0.1/t4l3nt-net/blockchain/setting-up-a-t4l3nt-node/build-the-docker-image-locally.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
