Skip to content

Commit e02925c

Browse files
committed
working on next blog post tutorial
1 parent 2ad82e0 commit e02925c

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

content/posts/180309-flask-docker-macos.markdown

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,29 @@ On your Mac,
4949
[download the Docker Community Edition (CE) for Mac](https://www.docker.com/community-edition#/download)
5050
installer.
5151

52-
Install Docker.
52+
Find the newly-downloaded install within Finder and double click on the file.
53+
Follow the installation process, which includes granting administrative privileges
54+
to the installer.
5355

54-
Open Terminal.
56+
Open Terminal when the installer is done. Test your Docker installation with the
57+
`--version` flag:
5558

56-
Test your Docker installation with the `docker --version` command.
59+
```
60+
docker --version
61+
```
62+
63+
If Docker is installed correctly you should see the following output:
5764

5865
```
5966
Docker version 17.12.0-ce, build c97c6d6
6067
```
6168

69+
<img src="/img/180309-flask-docker/docker-agent.png" width="100%" class="shot rnd" alt="Docker agent in the menu bar.">
70+
6271

6372
## Dockerfile
73+
Docker needs to know what we want in a container, which is where the
74+
`Dockerfile` comes in.
6475

6576
```
6677
# this is an official Python runtime, used as the parent image
19.2 KB
Loading

0 commit comments

Comments
 (0)