Skip to content

Commit 0b1d9dd

Browse files
Update README.md
1 parent 195c984 commit 0b1d9dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# docker-getting-started
22
This repo was started while going through Docker's "Getting started" and commits follow tutorial step by step.
3-
This readme will function as a notebook where I can collect useful information in the future when I learn more about Docker.
3+
This readme will function as a notebook where I can collect useful information also in the future when I learn more about Docker.
44
## build image from Dockerfile
55
```docker build -t <imagename> .```
66
t = tags the image
77
. = docker should look for Dockerfile in this folder.
88

99
## run the image in container
1010
```docker run -d -p 3000:3000 <imagename>```
11-
-d = detached mode, runs in backround
11+
-d = detached mode, runs in background
1212
-p = hostport:containerport
1313

1414
## Commands

0 commit comments

Comments
 (0)