1
0
mirror of https://github.com/oceanprotocol/barge.git synced 2024-11-22 09:47:04 +01:00

make es version customizable

This commit is contained in:
alexcos20 2022-11-29 12:53:56 +02:00
parent f1f29e9eb5
commit 0d4e77c96c
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
version: '3'
services:
elasticsearch:
image: elasticsearch:7.14.2
image: elasticsearch:${ELASTICSEACH_VERSION:-latest}
networks:
backend:
ipv4_address: 172.15.0.6

View File

@ -29,6 +29,7 @@ COMPOSE_DIR="${DIR}/compose-files"
# Default versions of Aquarius, Provider
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v4.2.0}
export ELASTICSEACH_VERSION=${ELASTICSEACH_VERSION:-8.5.1}
export PROVIDER_VERSION=${PROVIDER_VERSION:-v1.3.10}
export SUBGRAPH_VERSION=${SUBGRAPH_VERSION:-v3.0.0}
export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v1.1.8}