Fix use of bullet list (#15090)

* Fix use of bullet list

Otherwise it would read like so:

To summarize, a container: Containers are isolated from each other and run their own software, binaries, and configurations.

Alternatively, to keep it as a bullet point:

To summarize, a container: 
...
is isolated from other containers and runs its own software, binaries, and configurations.

Both are correct. I can change the PR to the other option if preferred.

* Fix use of bullet list

Thanks, @craig-osterhout 
 
As requested, here's the commit for the alternative. Please reject the other commit and accept this one.
This commit is contained in:
Peter Hauke 2022-07-27 18:17:59 +02:00 committed by GitHub
parent fd61543103
commit 5e97b7e1b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@ capabilities approachable and easy to use. To summarize, a container:
- is a runnable instance of an image. You can create, start, stop, move, or delete a container using the DockerAPI or CLI.
- can be run on local machines, virtual machines or deployed to the cloud.
- is portable (can be run on any OS)
- Containers are isolated from each other and run their own software, binaries, and configurations.
- is portable (can be run on any OS).
- is isolated from other containers and runs its own software, binaries, and configurations.
> **Creating containers from scratch**
>