From 4bcd61e7a91f4aa8ade99b901c56bc991db184b6 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Sun, 1 Feb 2026 22:37:46 +0100 Subject: Added docker-compose-example.yml --- docker-compose-example.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docker-compose-example.yml diff --git a/docker-compose-example.yml b/docker-compose-example.yml new file mode 100644 index 0000000..b361287 --- /dev/null +++ b/docker-compose-example.yml @@ -0,0 +1,20 @@ +services: + aichat: + container_name: aichat + build: + context: . + image: aichat-dev:latest + stdin_open: true + tty: true + environment: + AICHAT_FUNCTIONS_DIR: /opt/llm-functions + HOME: /home/dev + volumes: + # mount host user config + - ./config:/home/dev/.config/aichat:rw + - ./llm-functions-docker:/opt/llm-functions:ro + # project directory + - ./projects:/projects:rw + # work directory + - ./work:/work:rw + working_dir: /work -- cgit v1.2.3