From ad01ee9cc6bf002ef03e201af25fb6fa184c2129 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Sat, 31 Jan 2026 15:53:38 +0100 Subject: Initial commit --- docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker-compose.yml (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..77e44d5 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +services: + aichat: + build: + context: . + image: aichat-dev:latest + stdin_open: true + tty: true + environment: + AICHAT_FUNCTIONS_DIR: /opt/llm-functions + HOME: /home/dev + volumes: + - ./config:/home/dev/.config/aichat:rw + - ./projects:/projects:rw + - ./llm-functions:/opt/llm-functions:ro + working_dir: /work -- cgit v1.2.3