@@ -81,7 +81,7 @@ Container are a way to have an application runnig safely and isolated without st
## Docker
Docker is a container engine that will let us manage containers in a easy way.
Docker is a container engine that will allow us to manage containers in an easy way.
----
...
...
@@ -124,7 +124,7 @@ Ok, nice, but container are stateless. How can we save some data?
## Docker: Volumes
If we want to make data persistant, we need some place where to store it, and there come in to play the volumes.
If we want to have persistant data, we need some place where to store it, and there `docker volume` comes in to play.
----
...
...
@@ -168,7 +168,7 @@ In a registry!
A registry is (more or less) a repository of prebuild containers.
There are several registry that we can use to pull or push containers: [Docker Hub](https://hub.docker.com), [Quay](https://quay.io), [Red Hat Catalog](https://catalog.redhat.com/), ecc.
There are several registry that we can use to pull or push containers: [Docker Hub](https://hub.docker.com), [Quay](https://quay.io), [Red Hat Catalog](https://catalog.redhat.com/), [Google Containers Registry](https://gcr.io), etc.
----
...
...
@@ -213,7 +213,7 @@ Docker define a DSL (Domain Specific Language) to declare each of this steps.