Skip to content

Commit 015359f

Browse files
authored
Update README.md
1 parent bac311b commit 015359f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cheatsheet/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
#stop and Remove ALL containers
2+
# Stop and Remove ALL containers
33
docker stop $(docker ps -aq); docker rm $(docker ps -aq)
44

5-
#stop ALL containers
5+
# Stop ALL containers
66
docker stop $(docker ps -a -q)
77

8-
# remove ALL containers
8+
# Remove ALL containers
99
docker rm -f $(docker ps -a -q)
1010

1111

12-
For Containers :
12+
# For Containers :
1313
docker stop $(docker ps -qa)
1414
docker rm $(docker ps -qa)
1515

0 commit comments

Comments
 (0)