Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
davi17g committed Jun 10, 2024
1 parent 5183918 commit 239221a
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 16 deletions.
43 changes: 43 additions & 0 deletions prism-image-search/docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
services:
aerospike:
image: aerospike/aerospike-server-enterprise:7.0.0.2
ports:
- "3000:3000"
networks:
- avs-demo
volumes:
- ./container-volumes/aerospike/etc/aerospike:/opt/aerospike/etc/aerospike
command:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-proximus:0.4.0
# ports:
# - "5000:5000"
networks:
- avs-demo
volumes:
- ./container-volumes/avs/etc/avs:/etc/aerospike-proximus
app:
build:
context: .
dockerfile: Dockerfile-prism
develop:
watch:
- path: ./prism
action: rebuild
image: prism
ports:
- "8080:8080"
networks:
- avs-demo
environment:
AVS_HOST: avs
AVS_PORT: "5000"
APP_NUM_QUOTES: "5000"
GRPC_DNS_RESOLVER: native
volumes:
- ./container-volumes/prism/images:/prism/static/images/data

networks:
avs-demo: {}
9 changes: 1 addition & 8 deletions prism-image-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,7 @@ services:
volumes:
- ./container-volumes/avs/etc/avs:/etc/aerospike-proximus
app:
build:
context: .
dockerfile: Dockerfile-prism
develop:
watch:
- path: ./prism
action: rebuild
image: prism
image: aerospike/prism-search-example:latest
ports:
- "8080:8080"
networks:
Expand Down
44 changes: 44 additions & 0 deletions quote-semantic-search/docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
services:
aerospike:
image: aerospike/aerospike-server-enterprise:7.0.0.2
# ports:
# - "3000:3000"
networks:
- avs-demo
volumes:
- ./container-volumes/aerospike/etc/aerospike:/opt/aerospike/etc/aerospike
command:
- "--config-file"
- "/opt/aerospike/etc/aerospike/aerospike.conf"
avs:
image: aerospike/aerospike-proximus:0.4.0
# ports:
# - "5002:5002"
networks:
- avs-demo
volumes:
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-proximus
app:
build:
context: .
dockerfile: Dockerfile-quote-search
develop:
watch:
- path: ./quote-search
action: rebuild
image: quote-search
ports:
- "8080:8080"
networks:
- avs-demo
volumes:
- ./container-volumes/quote-search/data:/container-volumes/quote-search/data
# ./usr/local/lib/python3.10/dist-packages/sentence_transformers
environment:
AVS_HOST: avs
AVS_PORT: "5000"
APP_NUM_QUOTES: "5000"
GRPC_DNS_RESOLVER: native

networks:
avs-demo: {}
9 changes: 1 addition & 8 deletions quote-semantic-search/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,7 @@ services:
volumes:
- ./container-volumes/avs/etc/aerospike-vector-search:/etc/aerospike-proximus
app:
build:
context: .
dockerfile: Dockerfile-quote-search
develop:
watch:
- path: ./quote-search
action: rebuild
image: quote-search
image: aerospike/quote-search-example:latest
ports:
- "8080:8080"
networks:
Expand Down

0 comments on commit 239221a

Please sign in to comment.