Azure-Samples / qdrant-azure

Qdrant Vector Database on Azure Cloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker compose should not contain Postgres

shawncal opened this issue · comments

db:
image: postgres:14
restart: always
ports:
- '127.0.0.1:5432:5432'
environment:
POSTGRES_USER: octols
POSTGRES_PASSWORD: hfh45-JGThj
POSTGRES_INITDB_ARGS: --encoding=UTF-8 --lc-collate=C --lc-ctype=C
PGDATA: /var/lib/postgresql/data/postgres
LC_COLLATE: UTF-8
LC_CTYPE: UTF-8
volumes:
- d:\workspace\mydata:/var/lib/postgresql/data

All of the "db" section should be removed, as it's not related to qdrant.

commented

Adding to upcoming PR.

Also, the POSTGRES_USER and POSTGRES_PASSWORD should never have been checked in. Please be careful about secrets in the repo.

Please also remove all postgres references from the README

commented

References removed and Addressed in PR: #5