Fixes#25918 - Changed --permissive to --privileged.
(cherry picked from commit 91fdafb79f1532de33e2e258446d6eab80fd0d53)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Clarify how to use d4mac, d4win with swarm mode
(cherry picked from commit 6072e6bfd20598f4e9cb28d32c09bfddec6df76c)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Replace docker command from 'docker daemon' to 'dockerd'
(cherry picked from commit aff33055ac138e09ef693c8d07ea005cde55e025)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Modify incorrect repository URL
(cherry picked from commit a110512e38a14e938096fe18b345e8f920605b9f)
Signed-off-by: Charles Smith <charles.smith@docker.com>
get a redis-cli image while using docker pull
(cherry picked from commit 602b2381360cf59fffe46b64bb4bdfa180639c44)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Incorrect response field name for command "docker images"
(cherry picked from commit 0b2ff0ccdef3327e52699941b2ab888f7fbecb1e)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Fix minor typo in "Getting Started" documentation
(cherry picked from commit a949a79a5899df2b57c0ff3e6a3e9aa432db248c)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Remove the redundant words in reference for swarm
(cherry picked from commit 72e7cd75c1f7a636b48774c3ba189cc8fd510138)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Remove option "--manager" description for swarm_join.md
(cherry picked from commit 7cd88e5ec4fc13e1ded0eb7c565ed299b46c8259)
Signed-off-by: Charles Smith <charles.smith@docker.com>
adding some documentation about the new plugin system
(cherry picked from commit 88a6a7763b789a35fff9df4e52e48ca99afd3c08)
Signed-off-by: Charles Smith <charles.smith@docker.com>
fixed line spacing in Swarm tutorial bullets
(cherry picked from commit 62215920871b8d15a6ffe538baac5abe2b715409)
Signed-off-by: Charles Smith <charles.smith@docker.com>
fixed line spacing in Swarm tutorial bullets
(cherry picked from commit 62215920871b8d15a6ffe538baac5abe2b715409)
Signed-off-by: Charles Smith <charles.smith@docker.com>
docs: fix typo in url fragment
(cherry picked from commit ab533a98dceecec707414006544411cfd18b2d30)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Add the content for how services work
(cherry picked from commit abd08f4784810bcf8b4e88e3f9ef1023cb15b8b5)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Optimize description for Feature highlights
(cherry picked from commit d2fa978d4d66622a197eb98f9a77fa217e25f449)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Update apparmor error message
(cherry picked from commit e168f0b4ad4dfc11a4423a6785d80153f0969808)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Split list of capabilities into those added by default and those not
(cherry picked from commit d854c4fcc6255330693eee67b655606e92b11544)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Specify woker node for docker swarm leave command
(cherry picked from commit 90308fd78315412c30da90217ee14515de4fbf8a)
Signed-off-by: Charles Smith <charles.smith@docker.com>
author merge: add ingress / publish port guide
(cherry picked from commit dee30443368b9ed8046733242410b8c32550ce0d)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Remove erroneous ENTRYPOINT note
(cherry picked from commit c1bdda0be8616f987245cb61a4aedc09c8b5c806)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Remove mess words in installation doc
(cherry picked from commit bbd5396955a8c36b9f208d64fe580b769c1686f5)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Document Healthcheck in image spec
(cherry picked from commit 46cb1f2601afc2eb99cc31ced362d874c8c3c192)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Check the return message of docker service inspect
(cherry picked from commit 6fa69d2d0610320cce61517eca6e4471f5381561)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Add missing docs about binary remote contexts
(cherry picked from commit b4abe38d43f1158b3c085ef006e88740296a3020)
Signed-off-by: Charles Smith <charles.smith@docker.com>
Cleanup API docs Markdown formatting and wording
(cherry picked from commit 45cb33e65ca5bb247e2e9f425b4441ad6a08aa51)
Signed-off-by: Charles Smith <charles.smith@docker.com>
When the daemon is started, it looks at all the volumes and checks to
see if any of them have mount options persisted to disk, and loads them
from disk if it does.
In some cases a volume will be created with an empty map causing the
options file to be persisted and volume options set to a non-nil value
on daemon restart... this causes problems later when the driver checks
for a non-nil value to determine if it should try and mount with the
persisted volume options.
Ensures 2 things:
1. Instead of only checking nilness for the opts map, use `len` to make
sure it is not an empty map, which we don't really need to persit.
2. An empty (or nulled) opts.json will not inadvertnatly set volume
options on daemon restart.
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
(cherry picked from commit 246d1eb58e807f2cf2d2b387e267dcfa228f96a8)
Signed-off-by: Tibor Vass <tibor@docker.com>