Click here to Skip to main content
15,887,294 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,
after upgrading today to the new Ai version, my docker container fails to start with following error;

/bin/bash: line 1: pstree: command not found
Unhandled exception. System.Collections.Generic.KeyNotFoundException: The given key 'version' was not present in the dictionary.
   at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
   at CodeProject.AI.SDK.Common.SystemInfo.GetRuntimesAsync()
   at CodeProject.AI.SDK.Common.SystemInfo.InitializeAsync()
   at CodeProject.AI.Server.Program.Main(String[] args)
   at CodeProject.AI.Server.Program.<Main>(String[] args)



And here is my compose file:
version: "3.8"
services:
  ai-server:
    image: codeproject/ai-server:rpi64
    container_name: CodeprojectAI
    privileged: true
    ports:
      - "32168:32168"
    volumes:
      - /dev/bus/usb:/dev/bus/usb
      - /data/compose/codeprojectai/data:/app/data
      - /data/compose/codeprojectai/ai:/etc/codeproject/ai
      - /data/compose/codeprojectai/modules:/app/modules
    environment:
      - TZ=Europe/Berlin
    deploy:
      resources:
        limits:
          cpus: '1.00'
          memory: 1024M


Does anybody have a idea how I can fix that?

BR
Tobias

What I have tried:

Redeploy the container, no other idea how to fix that
Posted
Updated 28-Feb-24 5:37am
v2

1 solution

You should ask your question in the dedicated CodeProject.AI Discussions[^] forum.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900