infra: renamed broken references to alfred

This commit is contained in:
2025-12-24 08:09:26 +01:00
parent 1f88e99e8b
commit d10c9160f3
8 changed files with 40 additions and 42 deletions
+8 -10
View File
@@ -1,14 +1,12 @@
version: "3.4"
services:
# Da brain
agent-brain:
alfred:
build:
context: ./brain
dockerfile: Dockerfile
context: .
args:
RUNNER: ${RUNNER} # Get it from Makefile
container_name: agent-brain
container_name: alfred
restart: unless-stopped
env_file: .env
ports:
@@ -18,7 +16,7 @@ services:
- agent-memory:/data/memory
- agent-logs:/data/logs
# Development: mount code for hot reload (comment out in production)
# - ./brain:/app
# - ./alfred:/app
environment:
# LLM Configuration
LLM_PROVIDER: ${LLM_PROVIDER:-deepseek}
@@ -46,7 +44,7 @@ services:
- mongodb
- meilisearch
- rag_api
- agent-brain
- alfred
env_file: .env
environment:
# MongoDB connection (no auth, matching LibreChat default)
@@ -80,8 +78,8 @@ services:
# Endpoints
ENDPOINTS: custom
# Custom endpoint pointing to agent-brain
CUSTOM_API_KEY: ${AGENT_BRAIN_API_KEY:-agent-brain-secret-key}
# Custom endpoint pointing to alfred
CUSTOM_API_KEY: ${ALFRED_API_KEY:-alfred-secret-key}
# Debug (optional)
DEBUG_LOGGING: ${DEBUG_LOGGING:-false}
@@ -195,7 +193,7 @@ volumes:
librechat-logs:
driver: local
# Agent Brain data
# Alfred data
agent-memory:
driver: local
agent-logs: