fix(guide): Deleted and or moved the directories/files in client/src/guide and client/src/pages... (#19732)

This commit is contained in:
Kristofer Koishigawa
2018-10-20 19:47:50 +09:00
committed by mrugesh mohapatra
parent 862112ebc7
commit 4ed86a457e
2 changed files with 0 additions and 61 deletions

View File

@@ -0,0 +1,44 @@
---
title: More About Docker Containers
---
## More Commands to manage Docker Containers
* Command to list Running Containers
```
docker conatiner ls
```
* Command to list all the containers (including the stopped containers)
```
docker container ls -a
```
* Command to execute command in the container
```
docker exec -it <container name> run --rm <command>
```
* Command to view logs of the container
```
docker logs <container name>
```
* Command to remove all stopped containers
```
docker container prune
```
#### More Information
- [More commands for docker containers]
(https://docs.docker.com/engine/reference/commandline/container/)