project: add docker in root directory and readme

This commit is contained in:
Mathieu Virbel
2023-07-27 12:46:50 +02:00
parent b5e0baa6c8
commit 00797d9cc6
7 changed files with 317 additions and 1 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: "3.9"
services:
server:
build:
context: server
ports:
- 1250:1250
environment:
LLM_URL: "${LLM_URL}"
volumes:
- model-cache:/root/.cache
web:
build:
context: www
ports:
- 3000:3000
volumes:
model-cache: