-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (41 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
44 lines (41 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
tests:
container_name: agents-tests
image: agents-dev
build:
context: .
volumes:
- ./src:/usr/src/code/src
- ./tests:/usr/src/code/tests
- ./phpunit.xml:/usr/src/code/phpunit.xml
environment:
- LLM_KEY_ANTHROPIC=${LLM_KEY_ANTHROPIC:-}
- LLM_KEY_OPENAI=${LLM_KEY_OPENAI:-}
- LLM_KEY_DEEPSEEK=${LLM_KEY_DEEPSEEK:-}
- LLM_KEY_XAI=${LLM_KEY_XAI:-}
- LLM_KEY_PERPLEXITY=${LLM_KEY_PERPLEXITY:-}
- LLM_KEY_GEMINI=${LLM_KEY_GEMINI:-}
- LLM_KEY_OPENROUTER=${LLM_KEY_OPENROUTER:-}
depends_on:
- ollama
networks:
- utopia
ollama:
build:
context: .
dockerfile: ollama.dockerfile
args:
MODELS: "embeddinggemma"
container_name: ollama
ports:
- "11434:11434"
restart: unless-stopped
# persistent for caching models across restarts and preloading
volumes:
- ollama_models:/root/.ollama
networks:
- utopia
volumes:
ollama_models:
networks:
utopia: