> For the complete documentation index, see [llms.txt](https://services.rpcdot.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.rpcdot.com/allora/worker-node/other-commands/problem-408-solution.md).

# Problem 408 Solution

This solution is only for servers with Allora Docker - If there are different containers in Docker, it will also delete them. Be careful.

### Connect Server

### Delete Container's :&#x20;

```
docker rm -f $(docker ps -a -q) && docker system prune --volumes -a -f
```

### Enter Allora-Chain Directory :&#x20;

```
cd allora-chain 
```

### Enter the basic-coin-prediction-node Directory :&#x20;

```
cd basic-coin-prediction-node
```

### Let's go into the docker-compose.yml file :

```
nano docker-compose.yml 
```

<figure><img src="https://1882782965-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJKcLF887TYMWzFb2yWrk%2Fuploads%2F5PdmjTEE25Re0s1mPrZ2%2Fimage.png?alt=media&amp;token=f8491a7b-37b3-4daf-88f8-3c0f2d7f0d1d" alt=""><figcaption></figcaption></figure>

Your TimeOut here is 5, let's increase it to 10.

<figure><img src="https://1882782965-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJKcLF887TYMWzFb2yWrk%2Fuploads%2FCL82NbmqYv9gOBiDJuGj%2Fimage.png?alt=media&amp;token=f91c8e0a-f17c-4ba2-be6f-b1f48934a2d7" alt=""><figcaption></figcaption></figure>

### Let's edit it here:

```
--topic=allora-topic-1-worker
```

<figure><img src="https://1882782965-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJKcLF887TYMWzFb2yWrk%2Fuploads%2FCWnpiWifdLzIQBNX5MEO%2Fimage.png?alt=media&amp;token=a956b67d-00e3-4535-8070-b8af04a40305" alt=""><figcaption><p>Correct : </p></figcaption></figure>

Let's save: CTRL X - CTRL Y - Enter

### Let's Rebuild and Run :

```
docker compose build
docker compose up -d
```

### Check :&#x20;

```
curl --location 'http://localhost:6000/api/v1/functions/execute' \
--header 'Content-Type: application/json' \
--data '{
    "function_id": "bafybeigpiwl3o73zvvl6dxdqu7zqcub5mhg65jiky2xqb4rdhfmikswzqm",
    "method": "allora-inference-function.wasm",
    "parameters": null,
    "topic": "1",
    "config": {
        "env_vars": [
            {
                "name": "BLS_REQUEST_PATH",
                "value": "/api"
            },
            {
                "name": "ALLORA_ARG_PARAMS",
                "value": "ETH"
            }
        ],
        "number_of_nodes": -1,
        "timeout": 2
    }
}'
```

### Result :&#x20;

```
{
  "code": "200",
  "request_id": "03001a39-4387-467c-aba1-c0e1d0d44f59",
  "results": [
    {
      "result": {
        "stdout": "{\"value\":\"2564.021586281073\"}",
        "stderr": "",
        "exit_code": 0
      },
      "peers": [
        "12D3KooWG8dHctRt6ctakJfG5masTnLaKM6xkudoR5BxLDRSrgVt"
      ],
      "frequency": 100
    }
  ],
  "cluster": {
    "peers": [
      "12D3KooWG8dHctRt6ctakJfG5masTnLaKM6xkudoR5BxLDRSrgVt"
    ]
  }
}
```
