22ce90488c
This is a very simple test, but it paves the way for more of them.
33 lines
675 B
YAML
33 lines
675 B
YAML
services:
|
|
|
|
frontend:
|
|
user: "${DOCKER_USER:-1000}"
|
|
build:
|
|
context: .
|
|
dockerfile: ./src/frontend/Dockerfile
|
|
target: frontend-production
|
|
args:
|
|
API_ORIGIN: "http://localhost:8071"
|
|
image: conversations:frontend-production
|
|
ports:
|
|
- "3000:3000"
|
|
|
|
openmockllm-mistral:
|
|
user: "${DOCKER_USER:-1000}"
|
|
build:
|
|
context: .
|
|
dockerfile: ./src/OpenMockLLM/Dockerfile
|
|
image: conversations:openmockllm-mistral
|
|
command:
|
|
- openmockllm
|
|
- --host
|
|
- "0.0.0.0"
|
|
- --port
|
|
- "8000"
|
|
- --backend
|
|
- mistral
|
|
- --model-name
|
|
- mistral-mock
|
|
ports:
|
|
- "8900:8000"
|