Skip to content

Commit

Permalink
(improvement)(build) Support passing the version as a variable in the…
Browse files Browse the repository at this point in the history
… docker-compose.yml file. (#1313)
  • Loading branch information
lexluo09 authored Jul 1, 2024
1 parent e6ec689 commit d26eeb3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- 8.8.4.4

db_init:
image: supersonicbi/supersonic:0.9.2-SNAPSHOT
image: supersonicbi/supersonic:${SUPERSONIC_VERSION:-latest}
container_name: supersonic_db_init
depends_on:
- mysql
Expand Down Expand Up @@ -56,7 +56,7 @@ services:
- 8.8.4.4

supersonic_standalone:
image: supersonicbi/supersonic:0.9.2-SNAPSHOT
image: supersonicbi/supersonic:${SUPERSONIC_VERSION:-latest}
container_name: supersonic_standalone
environment:
DB_HOST: supersonic_mysql
Expand Down
20 changes: 10 additions & 10 deletions launchers/standalone/src/main/resources/langchain4j-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ langchain4j:
embedding-model:
model-name: bge-small-zh

# embedding-store:
# persist-path: /tmp
embedding-store:
persist-path: /tmp

# chroma:
# embedding-store:
# baseUrl: http://0.0.0.0:8000
# timeout: 120s

milvus:
embedding-store:
host: localhost
port: 2379
uri: http://0.0.0.0:19530
token: demo
dimension: 512
timeout: 120s
# milvus:
# embedding-store:
# host: localhost
# port: 2379
# uri: http://0.0.0.0:19530
# token: demo
# dimension: 512
# timeout: 120s

0 comments on commit d26eeb3

Please sign in to comment.