Skip to content

Commit df26a63

Browse files
committed
✏️ (Missing word) Add missing 'forward'
1 parent 1263eb6 commit df26a63

File tree

1 file changed

+1
-1
lines changed
  • docs/docs/04_docker_intro/03_run_docker_container

1 file changed

+1
-1
lines changed

docs/docs/04_docker_intro/03_run_docker_container/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ When we start a Docker container from this image, it will run the `flask run` co
8080

8181
But the container's ports are not accessible from outside the container by default. We need to tell Docker that when we access a certain port in our computer, those requests and responses should be forwarded to a certain port in our container.
8282

83-
So we'll run the container, but we must remember to a port (e.g. 5000) in our computer to port 5000 in the container
83+
So we'll run the container, but we must remember to forward a port (e.g. 5000) in our computer to port 5000 in the container
8484

8585
To do so, run this command:
8686

0 commit comments

Comments
 (0)