Hi there, Newbie question…
Is there a way to run Marqo in a WebApp for Containers on Azure?
It wont allow me to run priviliged containers.
Hi there, Newbie question…
Is there a way to run Marqo in a WebApp for Containers on Azure?
It wont allow me to run priviliged containers.
Hey, the best way to do this is to run OpenSearch outside the Marqo container. Start OpenSearch (or use kubernetes/kops to configure with high availability):
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" opensearchproject/opensearch:latest
Start Marqo without the privileged flag (you can also start Marqo behind a load balancer for high availability):
docker run --name marqo -p 8882:8882 --add-host host.docker.internal:host-gateway -e "OPENSEARCH_URL=https://localhost:9200" marqoai/marqo:latest