> For the complete documentation index, see [llms.txt](https://alethio.gitbook.io/memento/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alethio.gitbook.io/memento/running-memento/bundled-with-lite-explorer.md).

# Bundled with Lite Explorer

We've included a [docker-compose](https://github.com/Alethio/memento/blob/master/docker-compose-explorer.yml) that packages a full working environment with Memento and the [Ethereum Lite Explorer by Alethio](https://github.com/Alethio/ethereum-lite-explorer).

## Video guide

For a video version of the step-by-step guide below click on the following image. Note that all the commands executed in the video are part of the **Step-by-step guide** below.&#x20;

[![asciicast](https://asciinema.org/a/IxWpoRCukh8sB0svuOUwUOy5Z.svg)](https://asciinema.org/a/IxWpoRCukh8sB0svuOUwUOy5Z)

## Step-by-step guide

### Prerequisites

* [docker-compose](https://docs.docker.com/compose/install/)
* wget

### Set up the environment

Start by creating a folder on your machine to host all the memento-related files. This can be placed anywhere.&#x20;

Just keep in mind that it requires some disk space as it will also host the volume for the database.

```bash
mkdir memento
cd memento
```

The next step is to download the config and  docker-compose file from github. You can do that manually or using the following commands:

```bash
wget -q --show-progress https://raw.githubusercontent.com/Alethio/memento/master/docker-compose-explorer.yml
wget -q --show-progress https://raw.githubusercontent.com/Alethio/memento/master/config-sample.yml
wget -q --show-progress https://raw.githubusercontent.com/Alethio/memento/master/lite-explorer.config.json
```

At the end of this step, your directory should look like follows:

```bash
~/memento ❯ tree
.
├── config-sample.yml
├── docker-compose-explorer.yml
└── lite-explorer.config.json

0 directories, 3 files
```

Next step is to create a folder that our docker-compose will mount as a volume for the memento container. We'll use this to host Memento's configuration file.

```
mkdir -p .volumes/memento
mkdir -p .volumes/lite-explorer
```

### Copy the config and edit it as needed.&#x20;

By default, the values for postgres and redis are correct for using with docker compose.

```
mv config-sample.yml .volumes/memento/config.yml
mv lite-explorer.config.json .volumes/lite-explorer/config.json

# you can use any other text editor here
vim .volumes/memento/config.yml
```

### Start everything

```
docker-compose -f docker-compose-explorer.yml up -d
```

### Open the dashboard to check indexing progress

```
http://localhost:3000
```

### Open the Lite Explorer and start exploring&#x20;

```
http://localhost:80
```


---

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

```
GET https://alethio.gitbook.io/memento/running-memento/bundled-with-lite-explorer.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.
