Skip to content

Commit

Permalink
Update docker-compose.yml (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eun authored Sep 30, 2023
1 parent 932ece3 commit 991b462
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ services:
image: mongo
volumes:
- mongodb:/data/db
ports:
- 27017:27017
# ports:
# - "27017:27017"

minio:
image: minio/minio
environment:
- MINIO_ROOT_USER=user
- MINIO_ROOT_PASSWORD=password
ports:
- "9000:9000"
- "9001:9001"
# ports:
# - "9000:9000"
# - "9001:9001"
command: server --console-address ":9001" /data
volumes:
- minio:/data
Expand All @@ -23,13 +23,13 @@ services:
image: redis
volumes:
- redis:/data
ports:
- "6379:6379"
# ports:
# - "6379:6379"

weaviate:
image: semitechnologies/weaviate:1.21.2
ports:
- 8080:8080
# ports:
# - "8080:8080"
volumes:
- weaviate:/var/lib/weaviate
environment:
Expand Down Expand Up @@ -60,6 +60,7 @@ services:
- mongodb
- minio
- redis
- api
environment:
- PORT=8888
ports:
Expand All @@ -71,6 +72,7 @@ services:
depends_on:
- mongodb
- redis
- assets
environment:
- PORT=5555
ports:
Expand Down

0 comments on commit 991b462

Please sign in to comment.