From 0ffcd53c61dc89e0d3b56846bcbd1b608c54ff69 Mon Sep 17 00:00:00 2001 From: Fabio Pinheiro Date: Wed, 25 Sep 2024 15:47:16 +0100 Subject: [PATCH] fix: replace 'docker-compose' with 'docker compose' Signed-off-by: Fabio Pinheiro --- documentation/docs/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/quick-start.md b/documentation/docs/quick-start.md index 5ca299372..97cd95997 100644 --- a/documentation/docs/quick-start.md +++ b/documentation/docs/quick-start.md @@ -357,11 +357,11 @@ The latest mediator version can be found at [Mediator releases](https://github.c Mac OSX terminal shell ```bash -MEDIATOR_VERSION=0.15.0 SERVICE_ENDPOINTS="http://$(ipconfig getifaddr $(route get default | grep interface | awk '{print $2}')):8080;ws://$(ipconfig getifaddr $(route get default | grep interface | awk '{print $2}')):8080/ws" docker-compose up +MEDIATOR_VERSION=0.15.0 SERVICE_ENDPOINTS="http://$(ipconfig getifaddr $(route get default | grep interface | awk '{print $2}')):8080;ws://$(ipconfig getifaddr $(route get default | grep interface | awk '{print $2}')):8080/ws" docker compose up ``` Linux terminal shell ```bash -MEDIATOR_VERSION=0.15.0 SERVICE_ENDPOINTS="http://$(ip addr show $(ip route show default | awk '/default/ {print $5}') | grep 'inet ' | awk '{print $2}' | cut -d/ -f1):8080;ws://$(ip addr show $(ip route show default | awk '/default/ {print $5}') | grep 'inet ' | awk '{print $2}' | cut -d/ -f1):8080/ws" docker-compose up +MEDIATOR_VERSION=0.15.0 SERVICE_ENDPOINTS="http://$(ip addr show $(ip route show default | awk '/default/ {print $5}') | grep 'inet ' | awk '{print $2}' | cut -d/ -f1):8080;ws://$(ip addr show $(ip route show default | awk '/default/ {print $5}') | grep 'inet ' | awk '{print $2}' | cut -d/ -f1):8080/ws" docker compose up ``` `MEDIATOR_ENDPOINT` is then set to your local IP address:8080.