8b3317e15b
CI / tests (py3.12) (push) Failing after 0s
CI / tests (py3.11) (push) Failing after 0s
CI / tests (py3.10) (push) Failing after 2s
CI / clean-install smoke (push) Failing after 1s
CI / ruff (strict, full repo) (push) Failing after 1s
CI / tests (py3.13) (push) Failing after 3s
37 lines
672 B
YAML
37 lines
672 B
YAML
services:
|
|
tradingagents:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- tradingagents_data:/home/appuser/.tradingagents
|
|
tty: true
|
|
stdin_open: true
|
|
|
|
ollama:
|
|
image: ollama/ollama:latest
|
|
volumes:
|
|
- ollama_data:/root/.ollama
|
|
profiles:
|
|
- ollama
|
|
|
|
tradingagents-ollama:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- TRADINGAGENTS_LLM_PROVIDER=ollama
|
|
- OLLAMA_BASE_URL=http://ollama:11434/v1
|
|
volumes:
|
|
- tradingagents_data:/home/appuser/.tradingagents
|
|
depends_on:
|
|
- ollama
|
|
tty: true
|
|
stdin_open: true
|
|
profiles:
|
|
- ollama
|
|
|
|
volumes:
|
|
tradingagents_data:
|
|
ollama_data:
|