From 58f68442b662c44ae9d8b28fa098fea89b16feb6 Mon Sep 17 00:00:00 2001 From: Jesse S Date: Fri, 24 May 2024 12:06:02 -0700 Subject: [PATCH 1/2] Upgrade to 0.4.0 container (#33) --- docker/README.md | 16 ++++++++++------ docker/docker-compose.yaml | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/docker/README.md b/docker/README.md index f6ed907..c300d95 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,13 +1,17 @@ -# Aerospike Proximus Docker Compose +# Aerospike Vector Search (AVS) Docker Compose ## Prerequisite Locate valid `features.conf` in the `./config` directory: -## Installation Aerospike and Proximus Clusters (docker-compose) +> [!IMPORTANT] +> If you are running MacOS you will need to replace all occurances of port 5000 with +> port 5002 in your docker compose file and aerospike-proximus.yml file. + +## Installation Aerospike and AVS Clusters (docker-compose) ```shell docker compose -f docker-compose.yaml up -d ``` -## Installation Aerospike and Proximus Clusters (as separate docker images) +## Installation Aerospike and AVS Clusters (as separate docker images) ## Create Docker Network ```shell docker network create svc @@ -21,15 +25,15 @@ docker run -d \ -v ./config:/etc/aerospike aerospike/aerospike-server-enterprise:7.0.0.5 \ --config-file /etc/aerospike/aerospike.conf ``` -## Run Proximus Cluster +## Run AVS Cluster ```shell docker run -d \ ---name aerospike-proximus \ +--name aerospike-vs \ --network svc \ -p 5000:5000 \ -p 5040:5040 \ -v ./config:/etc/aerospike-proximus \ -aerospike/aerospike-proximus:0.3.1 +aerospike/aerospike-proximus:0.4.0 ``` diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index b0371b1..7671522 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -20,7 +20,7 @@ services: networks: - svc aerospike-proximus: - image: aerospike/aerospike-proximus:0.3.1 + image: aerospike/aerospike-proximus:0.4.0 container_name: "aerospike-proximus" depends_on: aerospike-cluster: From 1c5cf7bdc2fffa72ad29631106738328e6a293ed Mon Sep 17 00:00:00 2001 From: Jesse Schmidt Date: Fri, 24 May 2024 16:02:44 -0700 Subject: [PATCH 2/2] fix typo --- docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README.md b/docker/README.md index c300d95..7e23ac5 100644 --- a/docker/README.md +++ b/docker/README.md @@ -4,7 +4,7 @@ Locate valid `features.conf` in the `./config` directory: > [!IMPORTANT] -> If you are running MacOS you will need to replace all occurances of port 5000 with +> If you are running MacOS you will need to replace all occurrences of port 5000 with > port 5002 in your docker compose file and aerospike-proximus.yml file. ## Installation Aerospike and AVS Clusters (docker-compose)