Docker Installation

1. Pull the Infera Docker Image

install the Infera Docker Image using the following command on your terminal with docker installed.

docker pull infera/infera_node

This image would include the necessary setup for your Infera node to handle any inference requests on the network.

2. Run Infera Worker Instances

Run your node with the following command on your terminal with the following command once the image has been pulled.

docker run -d \ --name worker_api \ --restart always \ -p 11025:11025 \ -e API_GATEWAY_URL=
https://api.infera.org
 \ -e OLLAMA_HOST=
http://host.docker.internal:11434
 \ infera/infera_node:latest

Note that points generated from the CLI version will not be transferred to the docker instance of the node

Last updated