go to /src/deploy/docker and do "./stack up"
docker run --pull always --pull always --name example-search-service --rm -p50800:50800 -e spring.data.mongodb.host=host.docker.internal goafabric/example-search-service:$(grep '^version=' gradle.properties | cut -d'=' -f2)
docker run --pull always --name example-search-service-native --rm -p50800:50800 -e spring.data.mongodb.host=host.docker.internal goafabric/example-search-service-native:$(grep '^version=' gradle.properties | cut -d'=' -f2) -Xmx32m
docker run --pull always --name example-search-service-native --rm -p50800:50800 -e spring.data.mongodb.host=host.docker.internal goafabric/example-search-service-native-arm64v8:$(grep '^version=' gradle.properties | cut -d'=' -f2) -Xmx32m
docker run --name mongodb --rm -p27017:27017 -e MONGO_INITDB_ROOT_USERNAME=mongodb -e MONGO_INITDB_ROOT_PASSWORD=mongodb mongo:6.0.1
docker run --name elasticsearch-search --rm -p 9200:9200 -e "discovery.type=single-node" -e "xpack.security.enabled=false" -e "ES_JAVA_OPTS=-Xmx256m" docker.elastic.co/elasticsearch/elasticsearch:8.4.3