Skip to content

Commit

Permalink
Merge pull request #17632 from cklanac/patch-1
Browse files Browse the repository at this point in the history
Fix small typo on "Containerize an application" in "Start an app container" section
  • Loading branch information
craig-osterhout authored Jun 27, 2023
2 parents 71165a4 + 50ea31a commit b4fd05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-started/02_our_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Now that you have an image, you can run the application in a [container](../get-
$ docker run -dp 127.0.0.1:3000:3000 getting-started
```

The `-d` flag (short for `--detached`) runs the container in the background.
The `-d` flag (short for `--detach`) runs the container in the background.
The `-p` flag (short for `--publish`) creates a port mapping between the host and the container.
The `-p` flag take a string value in the format of `HOST:CONTAINER`,
where `HOST` is the address on the host, and `CONTAINER` is the port on the container.
Expand Down

0 comments on commit b4fd05b

Please sign in to comment.