30 lines
546 B
YAML
30 lines
546 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
gateway-test:
|
|
build: .
|
|
ports:
|
|
- "18080:18080"
|
|
- "18081:18081"
|
|
volumes:
|
|
- ./configs/config.test.yaml:/etc/edgeai/config.yaml:ro
|
|
- test-data:/tmp/edgeai-test
|
|
environment:
|
|
- EDGEAI_LOG_LEVEL=debug
|
|
- EDGEAI_DB_PATH=/tmp/edgeai-test
|
|
depends_on:
|
|
- ollama-test
|
|
restart: "no"
|
|
|
|
ollama-test:
|
|
image: ollama/ollama:latest
|
|
ports:
|
|
- "11435:11434"
|
|
volumes:
|
|
- test-models:/root/.ollama
|
|
restart: "no"
|
|
|
|
volumes:
|
|
test-data:
|
|
test-models:
|