diff options
| author | Leonard Kugis <leonard@kug.is> | 2026-02-01 22:37:46 +0100 |
|---|---|---|
| committer | Leonard Kugis <leonard@kug.is> | 2026-02-01 22:37:46 +0100 |
| commit | 4bcd61e7a91f4aa8ade99b901c56bc991db184b6 (patch) | |
| tree | 2e3aedd6d7098feb47b8898442e170223b90a201 | |
| parent | e8158814bfa6b20387d547c97cab41f21c358359 (diff) | |
| download | aichat-dev-docker-4bcd61e7a91f4aa8ade99b901c56bc991db184b6.tar.gz | |
Added docker-compose-example.yml
| -rw-r--r-- | docker-compose-example.yml | 20 |
1 files changed, 20 insertions, 0 deletions
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 |
