diff options
| author | Leonard Kugis <leonard@kug.is> | 2026-01-31 15:53:38 +0100 |
|---|---|---|
| committer | Leonard Kugis <leonard@kug.is> | 2026-01-31 15:53:38 +0100 |
| commit | ad01ee9cc6bf002ef03e201af25fb6fa184c2129 (patch) | |
| tree | 43b435043aabab7994a29ae501e965b1f3db3870 /docker-compose.yml | |
| download | aichat-dev-docker-ad01ee9cc6bf002ef03e201af25fb6fa184c2129.tar.gz | |
Initial commit
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 15 |
1 files changed, 15 insertions, 0 deletions
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 |
