Skip to content

Commit ca68c38

Browse files
committed
feat: modify Dockerfile
1 parent aee9c38 commit ca68c38

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docker-compose.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,21 @@ services:
1414
- ./docker-deploy-data/mysql/conf/:/etc/mysql/conf.d/
1515
- ./docker-deploy-data/mysql/init/:/docker-entrypoint-initdb.d/
1616
- ./docker-deploy-data/mysql/logs/:/logs/
17+
1718
tiny-engine-rag:
18-
image: chromadb/chroma:5.0.4
19+
image: chromadb/chroma:latest
20+
container_name: chroma-db
1921
ports:
2022
- "8000:8000"
2123
environment:
2224
- IS_PERSISTENT=TRUE
2325
- PERSIST_DIRECTORY=/chroma/chroma
26+
- ANONYMIZED_TELEMETRY=FALSE
2427
volumes:
2528
- ./docker-deploy-data/chroma/data:/chroma/chroma
2629
command: "--workers 1 --host 0.0.0.0 --port 8000"
30+
restart: unless-stopped
31+
2732
tiny-engine-back:
2833
image: tiny-engine-back
2934
container_name: tiny-engine-back

0 commit comments

Comments
 (0)