We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da490b commit ba2f79eCopy full SHA for ba2f79e
00-Docker-Fundamentals/README.md
@@ -3,14 +3,14 @@
3
## Flow-1: Pull existing Docker Image from Docker Hub and Run it as a Container
4
5
## Flow-2: Create a new Docker Image, Run as Container and Push to Docker Hub
6
-- Run the base Nginx container
+### Run the base Nginx container
7
- Access the URL http://localhost
8
```
9
docker run --name mynginxdefault -p 80:80 -d nginx
10
docker ps
11
12
13
-- Create Dockerfile and copy our customized index.html
+### Create Dockerfile and copy our customized index.html
14
15
FROM nginx
16
COPY index.html /usr/share/nginx/html
0 commit comments