Skip to content

Commit

Permalink
Merge pull request #42 from daydreamsai/mongo-db
Browse files Browse the repository at this point in the history
feat: abstract mongo db to allow persistent tasks
  • Loading branch information
ponderingdemocritus authored Jan 25, 2025
2 parents b00794a + 25d7e29 commit 1743423
Show file tree
Hide file tree
Showing 10 changed files with 12,030 additions and 15,154 deletions.
12 changes: 11 additions & 1 deletion docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,19 @@
# Pull the latest ChromaDB image
docker pull chromadb/chroma

# Pull the latest MongoDB image
docker pull mongo

# Run ChromaDB container with port mapping
docker run -d \
--name chroma \
-p 8000:8000 \
--restart unless-stopped \
chromadb/chroma
chromadb/chroma

# Run MongoDB container with port mapping
docker run -d \
--name mongodb \
-p 27017:27017 \
--restart unless-stopped \
mongo
Loading

0 comments on commit 1743423

Please sign in to comment.