<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --------- Signed-off-by: Diego B Theuerkauf <diego.theuerkauf@tuebingen.mpg.de> Co-authored-by: Igor Ilic <30923996+dexters1@users.noreply.github.com> Co-authored-by: Boris Arzentar <borisarzentar@gmail.com> Co-authored-by: Boris <boris@topoteretes.com> Co-authored-by: Igor Ilic <igorilic03@gmail.com> Co-authored-by: Hande <159312713+hande-k@users.noreply.github.com> Co-authored-by: Matea Pesic <80577904+matea16@users.noreply.github.com> Co-authored-by: hajdul88 <52442977+hajdul88@users.noreply.github.com> Co-authored-by: Daniel Molnar <soobrosa@gmail.com> Co-authored-by: Diego Baptista Theuerkauf <34717973+diegoabt@users.noreply.github.com> Co-authored-by: Dmitrii Galkin <36552323+dm1tryG@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: lxobr <122801072+lxobr@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions@users.noreply.github.com>
22 lines
510 B
YAML
22 lines
510 B
YAML
# Configuration for the 'cognee' application service
|
||
cognee:
|
||
# Image name (using the local image we’ll build in Minikube)
|
||
image: "cognee/cognee:main"
|
||
port: 8000
|
||
env:
|
||
HOST: "0.0.0.0"
|
||
ENVIRONMENT: "local"
|
||
PYTHONPATH: "."
|
||
resources:
|
||
cpu: "4.0"
|
||
memory: "8Gi"
|
||
|
||
# Configuration for the 'postgres' database service
|
||
postgres:
|
||
image: "pgvector/pgvector:pg17"
|
||
port: 5432
|
||
env:
|
||
POSTGRES_USER: "cognee"
|
||
POSTGRES_PASSWORD: "cognee"
|
||
POSTGRES_DB: "cognee_db"
|
||
storage: "8Gi"
|