server: dockerize the server and update documentation

This commit is contained in:
Mathieu Virbel
2023-07-27 12:18:49 +02:00
parent 305db8a3e4
commit b5e0baa6c8
6 changed files with 1784 additions and 47 deletions

14
server/docker-compose.yml Normal file
View File

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