Skip to content

Commit

Permalink
fix: consolidate docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
billshitg committed Jun 20, 2024
1 parent 2d1501f commit 1d621ca
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 180 deletions.
179 changes: 0 additions & 179 deletions docker-compose-dev.yml

This file was deleted.

28 changes: 27 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ services:
DB_CONFIG: "/code/configs/db_config.json"
MILVUS_CONFIG: "/code/configs/milvus_config.json"
LOGLEVEL: "INFO"
USE_CYPHER: "false"
USE_CYPHER: "true"
volumes:
- ./configs/:/code/configs
- ./common:/code/common
networks:
- copilot_local

eventual-consistency-service:
image: tigergraphml/ecc:latest
container_name: eventual-consistency-service
Expand All @@ -35,6 +38,9 @@ services:
volumes:
- ./configs/:/code/configs
- ./common:/code/common
networks:
- copilot_local

chat-history:
image: tigergraphml/chat-history:latest
container_name: chat-history
Expand All @@ -48,6 +54,8 @@ services:
LOGLEVEL: "INFO"
volumes:
- ./chat-history/:/configs
networks:
- copilot_local

# report-service:
# image: tigergraphml/report-service:latest
Expand Down Expand Up @@ -76,3 +84,21 @@ services:
- 3000:3000
depends_on:
- copilot
networks:
- copilot_local

nginx:
container_name: nginx
image: nginx
volumes:
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "80:80"
depends_on:
- ui
- copilot
networks:
- copilot_local

networks:
copilot_local:

0 comments on commit 1d621ca

Please sign in to comment.