Tuesday, October 18, 2022

[FIXED] How can I check if docker compose plugin is installed?

Issue

I can check if docker is installed through the which docker or command -v docker commands. But I need to check if docker's compose plugin is installed (I will use it like docker compose up -d later).


Solution

Write on terminal:

$ docker compose --version

The return would look like:

Docker version X.Y.Z, build 95e78f4241

Source: https://docs.docker.com/engine/reference/commandline/compose/



Answered By - tremendows
Answer Checked By - Katrina (PHPFixing Volunteer)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.