mirror of https://github.com/docker/docs.git
Merge pull request #7453 from waldyrious/patch-1
docker-for-mac: make command line more intuitive
This commit is contained in:
commit
71ec9f5283
|
@ -59,11 +59,11 @@ docker-machine version {{ site.machine_version }}, build 9ba6da9
|
|||
...
|
||||
```
|
||||
|
||||
2. Start a Dockerized web server. Like the hello-world image above, if the
|
||||
2. Start a Dockerized web server. Like the `hello-world` image above, if the
|
||||
image is not found locally, Docker pulls it from Docker Hub.
|
||||
|
||||
```bash
|
||||
$ docker run -d -p 80:80 --name webserver nginx
|
||||
$ docker run --detach --publish=80:80 --name=webserver nginx
|
||||
```
|
||||
|
||||
3. In a web browser, go to `http://localhost/` to view the nginx homepage.
|
||||
|
|
Loading…
Reference in New Issue