N8n settings are ghosted, so can't get in to add community nodes

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

I don't have a workflow.  Can't get nodes.

Share the output returned by the last node

in the workflow, click the 3 dots… setting is ghosted.

Information on your n8n setup

  • version: ‘3.8’

    services:
    ollama:
    image: ollama/ollama
    container_name: ollama
    ports:

    • “11434:11434”
      volumes:
    • ollama_data:/root/.ollama
      networks:
    • ai-network

    open-webui:
    image: ghcr.io/open-webui/open-webui:main
    container_name: open-webui
    ports:

    • “8080:8080”
      environment:
    • ‘OLLAMA_BASE_URL=http://ollama:11434
      volumes:
    • open_webui_data:/app/backend/data
      depends_on:
    • ollama
    • chromadb
      networks:
    • ai-network

    chromadb:
    image: chromadb/chroma
    container_name: chromadb
    ports:

    • “8000:8000”
      volumes:
    • chromadb_data:/chroma/.chroma/index
      networks:
    • ai-network

    comfyui:
    build:
    context: ./comfyui
    container_name: comfyui
    ports:

    • “8188:8188”
      volumes:
    • comfyui_data:/app/models
    • comfyui_input:/app/input
    • comfyui_output:/app/output
      depends_on:
    • ollama
      networks:
    • ai-network

    langchain_app:
    build:
    context: ./langchain_app
    container_name: langchain_app
    ports:

    n8n:
    image: n8nio/n8n:latest
    container_name: n8n
    restart: unless-stopped
    ports:

    • “5678:5678”
      volumes:
    • n8n_data:/home/node/.n8n
      environment:
    • N8N_HOST=n8n
    • N8N_PORT=5678
    • N8N_PROTOCOL=http
    • N8N_EDITOR_BASE_URL=http://localhost:5678/
    • N8N_BASIC_AUTH_ACTIVE=true
    • N8N_BASIC_AUTH_USER=#######
    • N8N_BASIC_AUTH_PASSWORD=#######
    • N8N_ENABLE_EXPRESSION_TOOLTIPS=true
    • N8N_NPM_INSTALL_ENABLED=true
      networks:
    • ai-network

    mimic3:
    image: mycroftai/mimic3
    container_name: mimic3
    ports:

    • “59125:59125”
      volumes:
    • mimic3_data:/home/mimic3/.local/share/mycroft/mimic3
      command: --voice en_US/ljspeech_low
      networks:
    • ai-network

    volumes:
    ollama_data:
    open_webui_data:
    chromadb_data:
    comfyui_data:
    comfyui_input:
    comfyui_output:
    langchain_app_data:
    n8n_data:
    mimic3_data:

    networks:
    ai-network:
    driver: bridge

Hi there @Le_Phat_Phuc , welcome to the community, can you provide screenshot of what do you mean by ‘ghosted’?

and i see you pasted your docker-compose file which i see, has a lot of thing including n8n

and can you also tell me what version of n8n are you? have you tried updating it into the latest version and see if that helps

2 Likes

sorry, just found it. needed to save. still cant find a node for chroma

from what i read on the community, there are no community node for chroma

but what we do have is using a langchain code node for chromaDB, which you can read more in this discussion right here

2 Likes

hi there @Le_Phat_Phuc , if my answer above help your issue please mark it as the solution

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.