Skip to content

Commit

Permalink
fix(docker-commands): renamed & moved things arround
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Jun 24, 2022
1 parent ee3f21b commit 0a5e7b1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 15 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Docker commands

## Stop things

### Stop all containers

```bash
docker stop $(docker ps -aq)
```

## Remove things

### Remove all containers

```bash
docker rm $(docker ps -aq)
```

### Remove & stop all containers

```bash
docker rm -f $(docker ps -aq)
```

### All Images

```bash
docker rmi $(docker images -q)
```

0 comments on commit 0a5e7b1

Please sign in to comment.