Skip to content

Commit

Permalink
chore: memory store docker val
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedantsahai18 committed Jan 9, 2025
1 parent ed5b417 commit bb1a6a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions memory-store/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
# See: https://github.com/timescale/timescaledb-docker?tab=readme-ov-file#notes-on-timescaledb-tune
environment:
- POSTGRES_PASSWORD=${MEMORY_STORE_PASSWORD:-postgres}
- OPENAI_API_KEY=${OPENAI_API_KEY}
- OPENAI_API_KEY=${OPENAI_API_KEY:?OPENAI_API_KEY is required}
- TS_TUNE_MAX_CONNS=${TS_TUNE_MAX_CONNS:-1000}
ports:
- "5432:5432"
Expand All @@ -30,8 +30,8 @@ services:
image: timescale/pgai-vectorizer-worker:latest
environment:
- PGAI_VECTORIZER_WORKER_DB_URL=postgres://postgres:${MEMORY_STORE_PASSWORD:-postgres}@memory-store:5432/postgres
- OPENAI_API_KEY=${OPENAI_API_KEY}
command: [ "--poll-interval", "2s" ]
- OPENAI_API_KEY=${OPENAI_API_KEY:?OPENAI_API_KEY is required}
command: [ "--poll-interval", "5s" ]
depends_on:
memory-store:
condition: service_healthy
Expand Down

0 comments on commit bb1a6a7

Please sign in to comment.