capistrant commented on code in PR #18424:
URL: https://github.com/apache/druid/pull/18424#discussion_r2342207084


##########
integration-tests/script/docker_run_cluster.sh:
##########
@@ -14,6 +14,15 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+# Determine if docker compose is available. If not, assume Docker supports
+# the compose subcommand
+set +e
+if which docker-compose > /dev/null
+then
+  DOCKER_COMPOSE='docker-compose'
+else
+  DOCKER_COMPOSE='docker compose'

Review Comment:
   heh, ya. I probably just need to fix my local setup and not use 
docker-compose. If nothing else I'll flip it to only fall back to 
docker-compose. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to