@@ -116,7 +116,7 @@ otherwise noted.
116116 # the case.
117117 enable: true
118118
119- # The name of the repository to pull the image from. See the "reposities "
119+ # The name of the repository to pull the image from. See the "repositories "
120120 # section of this document for more information about available repositories.
121121 # If this includes a tag (e.g. "my/image:tag"), that tagged image will be
122122 # used. Without a tag specified, the LTS version slug is added automatically.
@@ -271,7 +271,7 @@ user. For example (from
271271 # Restart the Docker daemon.
272272 sudo service docker restart
273273
274- You will now need to log out and log in again for the the group addition
274+ You will now need to log out and log in again for the group addition
275275to take effect.
276276
277277Note the above has security implications. See [ security] ( #security ) for more.
@@ -281,7 +281,7 @@ Security
281281
282282Having ` docker ` usable as a non-root user is always a security risk, and will
283283allow root access to your system. It is also possible to craft a ` stack.yaml `
284- that will run arbitrary commands in an arbirary docker container through that
284+ that will run arbitrary commands in an arbitrary docker container through that
285285vector, thus a ` stack.yaml ` could cause stack to run arbitrary commands as root.
286286While this is a risk, it is not really a greater risk than is posed by the
287287docker permissions in the first place (for example, if you ever run an unknown
@@ -325,7 +325,7 @@ by default, meaning a process running in the container can connect to
325325services running on the host, and a server process run within the container
326326can be accessed from the host without needing to explicitly publish its port.
327327To run the container with an isolated network, use ` --docker-run-args ` to pass
328- a the ` --net ` argument to ` docker-run ` . For example:
328+ the ` --net ` argument to ` docker-run ` . For example:
329329
330330 stack --docker-run-args='--net=bridge --publish=3000:3000' \
331331 exec some-server
0 commit comments