STAGING This is not the live site
Docker - macOS - How to Install Docker | centrexIT Knowledge Center
Loading...
centrexIT
Knowledge Center

Creyon Bio Docker - macOS - How to Install Docker

KB00064524
Cory Walton Work Instruction 1 min
Publishedv1

How to install Docker on macOS


Service Desk


When a request is made to install Docker


Note: Docker Desktop requires macOS 11 (Big Sur) or newer and an Intel or Apple Silicon (M1/M2) Mac.

1. Go to the Docker download page: https://docs.docker.com/get-started/get-docker/

2. Select your version: Click “Download for Mac (Apple chip)” if you have an Apple Silicon Mac (M1/M2), OR Click “Download for Mac (Intel chip)” if you have an Intel-based Mac.

3. Open the downloaded .dmg file

  • It will likely be in your Downloads folder as something like Docker.dmg.

4. Drag Docker to Applications folder

  • In the window that appears, drag and drop the Docker icon into the Applications folder.

5. Launch Docker

  • In Applications, double-click Docker to start it.

  • The first launch may require you to enter your Mac password to grant privileged access.

6. Wait for Docker to start

  • Look for the Docker whale icon in your menu bar. Wait until it says “Docker Desktop is running”.

7. Test Docker

  • Open Terminal and run:

    sh

    Copy code

    docker --version

  • You should see the installed Docker version.

  • You can also test running a container:

    sh

    Copy code

    docker run hello-world