Open the Docker desktop app from the command line on MacOS?

Answered
nick asked this question 1 year, 4 months ago
nick on May 12, 2022

Is there a way to open the Docker desktop GUI application from the command line? I'm on a Macbook Pro M1.

I can use the Finder GUI and go to the Applications directory and open it from there.

But I was hoping I could do it from the command line.

2 suggested answers
yaboy01 on May 15, 2022

You can use the open command:

open -a docker

This will open the Docker desktop GUI application.

0 replies
rusty1_rusty1 on May 15, 2022

You use the open command with the application path:

open /Applications/Docker.app
0 replies
Answered