Skip to content

Commit

Permalink
Welcome to Stack Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalyan Reddy Daida authored and Kalyan Reddy Daida committed Feb 15, 2020
1 parent 537de92 commit 5fb3623
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
10 changes: 10 additions & 0 deletions 05-Docker-Architecture/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Docker Architecture

## Understand Docker Architecture & Docker Terminology
- What is Docker Daemon?
- What is Docker Client?
- What are Docker Images?
- What are Docker Containers?
- What is Docker Registry or Docker Hub?
- Refer the [presentation slides](/otherfiles/presentation/Docker-Fundamentals-v1.pdf).

22 changes: 22 additions & 0 deletions 06-Essential-Docker-Commands/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Docker - Essential Commands
- The below are the list of essential commands we are in need

| Commands | Description |
| ------------------------------- | --------------------------------------------- |
| docker ps | List all running containers |
| docker ps -a | List all containers stopped, running |
| docker stop container-id | Stop the container which is running |
| docker start container-id | Start the container which is stopped |
| docker restart container-id | Restart the container which is running |
| docker port container-id | List port mappings of a specific container |
| docker rm container-id or name | Remove the stopped container |
| docker rm -f container-id or name| Remove the running container forcefully |
| docker pull image-info | Pull the image from docker hub repository |
| docker pull stacksimplify/springboot-helloworld-rest-api:2.0.0-RELEASE | Pull the image from docker hub repository |
| docker exec -it container-name /bin/sh | Connect to linux container and execute commands in container |
| docker rmi image-id | Remove the docker image |
| docker logout | Logout from docker hub |
| docker login -u username -p password | Login to docker hub |
| docker stats | Display a live stream of container(s) resource usage statistics |
| docker top container-id or name | Display the running processes of a container |
| docker version | Show the Docker version information |

0 comments on commit 5fb3623

Please sign in to comment.