Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/guides/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ the same Docker network.
Before you begin, you must remove any containers you previously ran for this
guide. To stop and remove a container, either:

- In a terminal, run `docker remove --force my-mysql` to remove the container
- In a terminal, run `docker rm --force my-mysql` to remove the container
named `my-mysql`.
- Or, in the Docker Desktop Dashboard, select the **Delete** icon next to your
container in the **Containers** view.
Expand Down Expand Up @@ -311,7 +311,7 @@ CLI or the Docker Desktop GUI.
Before you begin, you must remove any containers you previously ran for this
guide. To stop and remove a container, either:

- In a terminal, run `docker remove --force my-mysql` to remove the container
- In a terminal, run `docker rm --force my-mysql` to remove the container
named `my-mysql`.
- Or, in the Docker Desktop Dashboard, select the **Delete** icon next to your
container in the **Containers** view.
Expand Down Expand Up @@ -352,7 +352,7 @@ data persists:
be lost when removing the container.

```console
$ docker remove --force my-mysql
$ docker rm --force my-mysql
```

4. Start a new container with the volume attached. This time, you don't need to
Expand Down Expand Up @@ -486,7 +486,7 @@ run a custom MySQL image that includes a table initialization script.
Before you begin, you must remove any containers you previously ran for this
guide. To stop and remove a container, either:

- In a terminal, run `docker remove --force my-mysql` to remove the container
- In a terminal, run `docker rm --force my-mysql` to remove the container
named `my-mysql`.
- Or, in the Docker Desktop Dashboard, select the **Delete** icon next to your
container in the **Containers** view.
Expand Down