Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,20 @@ services:
image: dunglas/frankenphp
volumes:
- ./:/app
- caddy_data:/data
- caddy_config:/config
ports:
- 443:443
tty: true
environment:
- FRANKENPHP_CONFIG="worker ./public/index.php"
- APP_RUNTIME=Runtime\FrankenPhpSymfony\Runtime

composer:
image: composer:latest
volumes:
- ./:/app

chromadb:
image: chromadb/chroma:latest
image: chromadb/chroma:0.5.23
volumes:
- ./chromadb:/chroma/chroma
environment:
- IS_PERSISTENT=TRUE
- PERSIST_DIRECTORY=/chroma/chroma # this is the default path, change it as needed
- ANONYMIZED_TELEMETRY=FALSE

volumes:
caddy_data:
caddy_config:
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"codewithkyrian/chromadb-php": "^0.3.0",
"codewithkyrian/chromadb-php": "^0.4.0",
"league/commonmark": "^2.7",
"php-llm/llm-chain-bundle": "^0.20.2",
"runtime/frankenphp-symfony": "^0.2.0",
Expand Down
Loading