26 lines
632 B
YAML
26 lines
632 B
YAML
services:
|
|
offer-to-order:
|
|
build: .
|
|
container_name: offer-to-order
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3037:8000"
|
|
environment:
|
|
LITELLM_BASE_URL: ${LITELLM_BASE_URL:-http://host.docker.internal:4000/v1}
|
|
LITELLM_API_KEY: ${LITELLM_API_KEY:-}
|
|
LLM_MODEL: ${LLM_MODEL:-anthropic/claude-sonnet-4-20250514}
|
|
PROCESS_API_KEY: ${PROCESS_API_KEY:-}
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
networks:
|
|
- localai
|
|
volumes:
|
|
- offer-to-order-data:/tmp/offer-to-order
|
|
|
|
volumes:
|
|
offer-to-order-data:
|
|
|
|
networks:
|
|
localai:
|
|
external: true
|