Worker Nodes (Update Node)

Introduction

This guide will help you update your BrinxAI Worker Nodes from an older version to the latest version.

Update Instructions

Step 1: Stop the Existing Containers

Before updating, you need to stop your existing Docker containers. Run the following commands in your terminal or Command Prompt:

# List all running containers and find the name of your Worker
docker ps

# Stop the running Worker Node container
docker stop <container_name>

Step 2: Pull the Latest Version

Next, pull the latest version of the Worker Node:

# Pull the latest version of the Worker Node
docker pull admier/brinxai_nodes-worker:latest

Step 3: Start the Updated Worker Node

After pulling the latest version, start the Worker Node with the following command:

# Start the updated Worker Node
docker compose up

Go to workers.brinxai.com and verify that your Worker Node is listed and active.

Important Notes

  • Make sure to backup any important data before performing the update.

  • Ensure that port 5011 is open on your system for the Worker Node to function correctly.

By following these updated instructions, you can successfully install or update your BrinxAI Worker Nodes on both Linux and Windows platforms.

Last updated