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:- “8001:8001”
volumes: - langchain_app_data:/app
environment: - OLLAMA_HOST=http://ollama:11434
- CHROMA_HOST=http://chromadb:8000
depends_on: - ollama
- chromadb
networks: - ai-network
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 - “11434:11434”