Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Import man docs completion #23

Merged
merged 2,539 commits into from
Jun 5, 2017
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jun 2, 2017

  1. Update opts.MemBytes to disable default, and move `docker run/create/…

    …build` to use opts.MemBytes
    
    This fix made several updates:
    1. Update opts.MemBytes so that default value will not show up.
       The reason is that in case a default value is decided by daemon,
       instead of client, we actually want to not show default value.
    2. Move `docker run/create/build` to use opts.MemBytes for `--shm-size`
       This is to bring consistency between daemon and docker run
    3. docs updates.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: d75f24fd9d0a1503625d21ad95cfd3d970146c71
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    d0dc5b7 View commit details
    Browse the repository at this point in the history
  2. Add bash completion for docker checkpoint

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: a4ce26ba47fe656549efacc7f1452855706acd3f
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    69fb91c View commit details
    Browse the repository at this point in the history
  3. reference/commandline: small tfix

    Signed-off-by: Ma Shimiao <[email protected]>
    Upstream-commit: e000321b1dff72e894eb87e2cf037bed4bf5da7e
    Component: cli
    Ma Shimiao authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2b3dc2c View commit details
    Browse the repository at this point in the history
  4. Make markdown for man pages of docker container ... consistent

    This fix updates the markdown for man pages of `docker container ...`
    so that they are consistent. The changes are based on feedback:
    moby/moby#30645 (comment)
    moby/moby#30645 (comment)
    
    1. Use `H2 (##)` as needed
    2. Use unrpiviledged prompt (`$`) instead of (`#`)
    
    This PR convers files under man/src/container/*.md
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: b8b156f343060ced4cc638ab67d36a4fd071f20a
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f08bf3e View commit details
    Browse the repository at this point in the history
  5. Add --format to docker service ls

    This fix tries to improve the display of `docker service ls`
    and adds `--format` flag to `docker service ls`.
    
    In addition to `--format` flag, several other improvement:
    1. Updates `docker stacks service`.
    2. Adds `servicesFormat` to config file.
    
    Related docs has been updated.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 7d3b3fda0d193e4d198850944bdea873c78bf77f
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    89a3d2f View commit details
    Browse the repository at this point in the history
  6. Add markdown for man page of docker plugin ls

    This fix adds markdown for man page of `docker plugin ls`,
    based on moby/moby#28627 (comment)
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 6686179ff5d712a67d4a4119d33be2dc3fd4eea8
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    301a68b View commit details
    Browse the repository at this point in the history
  7. Add bash completion for `{dockerd,docker run} --log-opt max-buffer-si…

    …ze|mode`
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: e49d13fc0260e539cb4625bbad5cb11169d5933b
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3f713f4 View commit details
    Browse the repository at this point in the history
  8. add endpoint mode a default value

    Signed-off-by: allencloud <[email protected]>
    Upstream-commit: 27260134231d8abc18fa7fcddc2b69c19b8cc736
    Component: cli
    allencloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b802dfe View commit details
    Browse the repository at this point in the history
  9. Windows: Unify workdir handling

    Signed-off-by: John Howard <[email protected]>
    
    Working directory processing was handled differently for Hyper-V and Windows-Server containers, as annotated in the builder documentation (updated in this PR). For Hyper-V containers, the working directory set by WORKDIR was not created. This PR makes Hyper-V containers work the same as Windows Server containers (and the same as Linux).
    
    Example (only applies to Hyper-V containers, so not reproducible under CI environment)
    Dockerfile:
    FROM microsoft/nanoserver
    WORKDIR c:\installer
    ENV GOROOT=c:\installer
    ADD go.exe .
    RUN go --help
    Running on Windows Server 2016, using docker master without this change, but with daemon set to --exec-opt isolation=hyperv as it would be for Client operating systems.
    PS E:\go\src\github.com\docker\docker> dockerd -g c:\control --exec-opt isolation=hyperv
    time="2017-02-01T15:48:09.657286100-08:00" level=info msg="Windows default isolation mode: hyperv"
    time="2017-02-01T15:48:09.662720900-08:00" level=info msg="[graphdriver] using prior storage driver: windowsfilter"
    time="2017-02-01T15:48:10.011588000-08:00" level=info msg="Graph migration to content-addressability took 0.00 seconds"
    time="2017-02-01T15:48:10.016655800-08:00" level=info msg="Loading containers: start."
    time="2017-02-01T15:48:10.460820000-08:00" level=info msg="Loading containers: done."
    time="2017-02-01T15:48:10.509859600-08:00" level=info msg="Daemon has completed initialization"
    time="2017-02-01T15:48:10.509859600-08:00" level=info msg="Docker daemon" commit=3c64061 graphdriver=windowsfilter version=1.14.0-dev
    First with no explicit isolation:
    PS E:\docker\build\unifyworkdir> docker build --no-cache .
    Sending build context to Docker daemon  10.1 MB
    Step 1/5 : FROM microsoft/nanoserver
     ---> 89b8556cb9ca
    Step 2/5 : WORKDIR c:\installer
     ---> 7e0f41d08204
    Removing intermediate container 236c7802042a
    Step 3/5 : ENV GOROOT c:\installer
     ---> Running in 8ea5237183c1
     ---> 394b70435261
    Removing intermediate container 8ea5237183c1
    Step 4/5 : ADD go.exe .
     ---> e47401a1745c
    Removing intermediate container 88dcc28e74b1
    Step 5/5 : RUN go --help
     ---> Running in efe90e1b6b8b
    container efe90e1b6b8b76586abc5c1dc0e2797b75adc26517c48733d90651e767c8463b encountered an error during CreateProcess: failure in a Windows system call: The directory name is invalid. (0x10b) extra info: {"ApplicationName":"","CommandLine":"cmd /S /C go --help","User":"","WorkingDirectory":"C:\\installer","Environment":{"GOROOT":"c:\\installer"},"EmulateConsole":false,"CreateStdInPipe":true,"CreateStdOutPipe":true,"CreateStdErrPipe":true,"ConsoleSize":[0,0]}
    PS E:\docker\build\unifyworkdir>
    Then forcing process isolation:
    PS E:\docker\build\unifyworkdir> docker build --isolation=process --no-cache .
    Sending build context to Docker daemon  10.1 MB
    Step 1/5 : FROM microsoft/nanoserver
     ---> 89b8556cb9ca
    Step 2/5 : WORKDIR c:\installer
     ---> 350c955980c8
    Removing intermediate container 8339c1e9250c
    Step 3/5 : ENV GOROOT c:\installer
     ---> Running in bde511c5e3e0
     ---> b8820063b5b6
    Removing intermediate container bde511c5e3e0
    Step 4/5 : ADD go.exe .
     ---> e4ac32f8902b
    Removing intermediate container d586e8492eda
    Step 5/5 : RUN go --help
     ---> Running in 9e1aa235af5f
    Cannot mkdir: C:\installer is not a directory
    PS E:\docker\build\unifyworkdir>
    Now compare the same results after this PR. Again, first with no explicit isolation (defaulting to Hyper-V containers as that's what the daemon it set to) - note it now succeeds 😄
    PS E:\docker\build\unifyworkdir> docker build --no-cache .
    Sending build context to Docker daemon  10.1 MB
    Step 1/5 : FROM microsoft/nanoserver
     ---> 89b8556cb9ca
    Step 2/5 : WORKDIR c:\installer
     ---> 4f319f301c69
    Removing intermediate container 61b9c0b1ff6f
    Step 3/5 : ENV GOROOT c:\installer
     ---> Running in c464a1d612d8
     ---> 96a26ab9a7b5
    Removing intermediate container c464a1d612d8
    Step 4/5 : ADD go.exe .
     ---> 0290d61faf57
    Removing intermediate container dc5a085fffe3
    Step 5/5 : RUN go --help
     ---> Running in 60bd56042ff8
    Go is a tool for managing Go source code.
    
    Usage:
    
            go command [arguments]
    
    The commands are:
    
            build       compile packages and dependencies
            clean       remove object files
            doc         show documentation for package or symbol
            env         print Go environment information
            fix         run go tool fix on packages
            fmt         run gofmt on package sources
            generate    generate Go files by processing source
            get         download and install packages and dependencies
            install     compile and install packages and dependencies
            list        list packages
            run         compile and run Go program
            test        test packages
            tool        run specified go tool
            version     print Go version
            vet         run go tool vet on packages
    
    Use "go help [command]" for more information about a command.
    
    Additional help topics:
    
            c           calling between Go and C
            buildmode   description of build modes
            filetype    file types
            gopath      GOPATH environment variable
            environment environment variables
            importpath  import path syntax
            packages    description of package lists
            testflag    description of testing flags
            testfunc    description of testing functions
    
    Use "go help [topic]" for more information about that topic.
    
    The command 'cmd /S /C go --help' returned a non-zero code: 2
    And the same with forcing process isolation. Also works 😄
    PS E:\docker\build\unifyworkdir> docker build --isolation=process --no-cache .
    Sending build context to Docker daemon  10.1 MB
    Step 1/5 : FROM microsoft/nanoserver
     ---> 89b8556cb9ca
    Step 2/5 : WORKDIR c:\installer
     ---> f423b9cc3e78
    Removing intermediate container 41330c88893d
    Step 3/5 : ENV GOROOT c:\installer
     ---> Running in 0b99a2d7bf19
     ---> e051144bf8ec
    Removing intermediate container 0b99a2d7bf19
    Step 4/5 : ADD go.exe .
     ---> 7072e32b7c37
    Removing intermediate container a7a97aa37fd1
    Step 5/5 : RUN go --help
     ---> Running in 7097438a54e5
    Go is a tool for managing Go source code.
    
    Usage:
    
            go command [arguments]
    
    The commands are:
    
            build       compile packages and dependencies
            clean       remove object files
            doc         show documentation for package or symbol
            env         print Go environment information
            fix         run go tool fix on packages
            fmt         run gofmt on package sources
            generate    generate Go files by processing source
            get         download and install packages and dependencies
            install     compile and install packages and dependencies
            list        list packages
            run         compile and run Go program
            test        test packages
            tool        run specified go tool
            version     print Go version
            vet         run go tool vet on packages
    
    Use "go help [command]" for more information about a command.
    
    Additional help topics:
    
            c           calling between Go and C
            buildmode   description of build modes
            filetype    file types
            gopath      GOPATH environment variable
            environment environment variables
            importpath  import path syntax
            packages    description of package lists
            testflag    description of testing flags
            testfunc    description of testing functions
    
    Use "go help [topic]" for more information about that topic.
    
    The command 'cmd /S /C go --help' returned a non-zero code: 2
    PS E:\docker\build\unifyworkdir>
    Upstream-commit: 93a4f8899162f829c1ff48b1babd9a53c3cb58a9
    Component: cli
    John Howard authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c4b571e View commit details
    Browse the repository at this point in the history
  10. Refactor use of shared completion functions

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 5288b7e7fd9d818b1b2cd68199a190834bf014bb
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5a9900c View commit details
    Browse the repository at this point in the history
  11. Add bash completion for dockerd --default-shm-size

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 1d032d8b1e48ec6057b6503ee389c565ae72394f
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8a781f7 View commit details
    Browse the repository at this point in the history
  12. Add docker plugin upgrade

    This allows a plugin to be upgraded without requiring to
    uninstall/reinstall a plugin.
    Since plugin resources (e.g. volumes) are tied to a plugin ID, this is
    important to ensure resources aren't lost.
    
    The plugin must be disabled while upgrading (errors out if enabled).
    This does not add any convenience flags for automatically
    disabling/re-enabling the plugin during before/after upgrade.
    
    Since an upgrade may change requested permissions, the user is required
    to accept permissions just like `docker plugin install`.
    
    Signed-off-by: Brian Goff <[email protected]>
    Upstream-commit: 02677bc06e34d475fa8966f851fee291f639c96c
    Component: cli
    cpuguy83 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c2e799f View commit details
    Browse the repository at this point in the history
  13. Make propagated mount persist outside rootfs

    This persists the "propagated mount" for plugins outside the main
    rootfs. This enables `docker plugin upgrade` to not remove potentially
    important data during upgrade rather than forcing plugin authors to hard
    code a host path to persist data to.
    
    Also migrates old plugins that have a propagated mount which is in the
    rootfs on daemon startup.
    
    Signed-off-by: Brian Goff <[email protected]>
    Upstream-commit: df4e570ff4af9fb69fce7512b0f0acac8bf6db70
    Component: cli
    cpuguy83 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6a8ef92 View commit details
    Browse the repository at this point in the history
  14. Updated dockerd docs with note about user namespaces

    Signed-off-by: Lewis Daly <[email protected]>
    
    Updated uid/gid reference to be more canonical - and signed commit
    
    Signed-off-by: Lewis Daly <[email protected]>
    
    Editorial suggestion
    
    I tried my hand at rewriting this a bit for readability. Can you please verify that the facts are correct, especially about the permission changes? You can feel free to squash my commit with yours so that it's signed. You'll need to pull the change from your fork to work on it locally.
    
    Editorial suggestion
    
    I tried my hand at rewriting this a bit for readability. Can you please verify that the facts are correct, especially about the permission changes? You can feel free to squash my commit with yours so that it's signed. You'll need to pull the change from your fork to work on it locally.
    Upstream-commit: 50d1d4ecba154fc4866668bfd46cf11fdc35bfe8
    Component: cli
    lewisdaly authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a754ae9 View commit details
    Browse the repository at this point in the history
  15. Add bash completion for {stack services,service ls} --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f7e0aa39fab691ce9fda0fdd59dd44839298304b
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    35aa1f0 View commit details
    Browse the repository at this point in the history
  16. from golang:1.7.5-alpine for docker-manpage-dev

    Signed-off-by: Andrew Hsu <[email protected]>
    Upstream-commit: 6d4b51d1a944edbb9fe3e592ecabd65d87a30362
    Component: cli
    andrewhsu authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ed59737 View commit details
    Browse the repository at this point in the history
  17. use precompiled go from google, needs debian to work

    Signed-off-by: Andrew Hsu <[email protected]>
    Upstream-commit: a39f753e5635d6dd1ac27cb415f66cf794bc615d
    Component: cli
    andrewhsu authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ed74cb5 View commit details
    Browse the repository at this point in the history
  18. remove musl-dev in man/Dockerfile.armhf

    Signed-off-by: Andrew Hsu <[email protected]>
    Upstream-commit: ff9b736d5288e50c2dad5cf19ea516f28ad86a6e
    Component: cli
    andrewhsu authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7fdb8e3 View commit details
    Browse the repository at this point in the history
  19. Fix grammatical error in swarm_leave.md

    Correct this sentence so it reads correctly. "to on a manager" should be
    "on a manager".
    
    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: e6889bf41b23ebf442bf43d9317cbde69cc797e4
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5842bb3 View commit details
    Browse the repository at this point in the history
  20. added ppc64le and s390x fixes for manpages

    Fixes manpages for p and z by downloading a specific version
    of go instead of relying on the distro version.
    
    Signed-off-by: Christopher Jones <[email protected]>
    Upstream-commit: d39215cbaa54290537d9a2bdcfa48cb479c53b30
    Component: cli
    tophj-ibm authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8d23e38 View commit details
    Browse the repository at this point in the history
  21. Update docker stack experimental notes

    Update command usage and help.
    
    Signed-off-by: Vincent Demeester <[email protected]>
    Upstream-commit: 705f7ad7d2b77b1f3051d44d38b8041cb360cbc5
    Component: cli
    vdemeester authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b40caaa View commit details
    Browse the repository at this point in the history
  22. Document --init flag for docker run

    Signed-off-by: Nathan LeClaire <[email protected]>
    Upstream-commit: f571b363e6ea9cbc159514ba2314dfca8e73484b
    Component: cli
    nathanleclaire authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5a52b7e View commit details
    Browse the repository at this point in the history
  23. Remove --init-path mention

    Signed-off-by: Nathan LeClaire <[email protected]>
    Upstream-commit: b380c2eb63ea7d5b3eebeaee13399ba5c7be3d37
    Component: cli
    nathanleclaire authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    fd7bb17 View commit details
    Browse the repository at this point in the history
  24. Add bash completion for docker plugin ls --filter

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f26c735282ed2adae2e1b9d440d6c06e25bd28b2
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1284543 View commit details
    Browse the repository at this point in the history
  25. Add bash completion for docker ps --filter expose|publish

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f1cef9c7ab4847bd46da6a65694537c4ff9e7000
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2a1922b View commit details
    Browse the repository at this point in the history
  26. Update API history and man page for --filter expose/publish

    This fix updates API history and man page for
    `docker ps --filter expose/publish`, from the feedback:
    moby/moby#27557 (comment)
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: d77db0bd9ac80a3a2e7ad4d90b6aa33fe4fc0462
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a4e4b60 View commit details
    Browse the repository at this point in the history
  27. Improve bash completion for docker plugin enable|disable

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 221d15877dd068360e34dc92c9609f9cd65a7943
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f0550de View commit details
    Browse the repository at this point in the history
  28. Add plugin debug docs.

    Doc fix for #30761
    
    Signed-off-by: Anusha Ragunathan <[email protected]>
    Upstream-commit: c76dcd33f772866d7b4cb5bad21b3b1505cf7b03
    Component: cli
    anusha-ragunathan authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7805da2 View commit details
    Browse the repository at this point in the history
  29. update events related doc and swagger.yml

    Signed-off-by: allencloud <[email protected]>
    Upstream-commit: d84da237bf889a8c4fdce2b7ca5f4c5351d9a221
    Component: cli
    allencloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    de4235c View commit details
    Browse the repository at this point in the history
  30. Add info about the relationship between swarm leave and node rm

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: c2893a6e1cf27b4353166562d2fc1c1f46eae5a9
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    021a712 View commit details
    Browse the repository at this point in the history
  31. Removed unused image

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: cf4b3715ed383ef5ca566861576cc7b6b086679e
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a344310 View commit details
    Browse the repository at this point in the history
  32. Standardized formatting of CLI reference commands

    Command name should be a H1
    
    Only Description, Examples, and Related Commands should be H2
    
    Changed 'Related information' heading to 'Related commands' since 99% it is only linking commands
    
    Added some examples where relevant
    
    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: ddadd3db494ce568a6b847932677f837802ea6b5
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    020523b View commit details
    Browse the repository at this point in the history
  33. add missing filter type and sort filter type in alphabets

    Signed-off-by: allencloud <[email protected]>
    Upstream-commit: 4113925b2552cf22f66c5e0ff4db8b19c6c366fb
    Component: cli
    allencloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    714b8af View commit details
    Browse the repository at this point in the history
  34. add expose and publish filter in swagger.yml and CLI docs for docker/…

    …master
    
    Signed-off-by: allencloud <[email protected]>
    Upstream-commit: 1507e86ada726ebe605070794444739451272426
    Component: cli
    allencloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    dde4ebb View commit details
    Browse the repository at this point in the history
  35. Define bridge networks

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: 022d972c38a346b6b086ff4d27b4fbf4cafae746
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    07b8086 View commit details
    Browse the repository at this point in the history
  36. Add zsh completion for missing 'docker swarm init|update' options

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 620247aab4ed7019a0987d0eba0147c15d614f77
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ae910fd View commit details
    Browse the repository at this point in the history
  37. Add zsh completion for 'docker swarm unlock|unlock-key' commands

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: acff7d285d8c45e1df6be60c5233412c3940bf11
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e120edc View commit details
    Browse the repository at this point in the history
  38. Add missing link in deprecated.md

    This fix adds a missing link in deprecated.md
    ```
    Deprecated In Release: [v1.13.0]...
    ```
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: ecc4938091e6dc7c412847d6528a599a26c2363a
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    914cef8 View commit details
    Browse the repository at this point in the history
  39. fix typo

    Signed-off-by: yupengzte <[email protected]>
    Upstream-commit: 225c67f074ea9619671b617b3a01b4d38be6137c
    Component: cli
    YuPengZTE authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    0efa0b9 View commit details
    Browse the repository at this point in the history
  40. Add zsh completion for 'docker build --squash'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 58ef5d4760d8ce0da19995ca234ccd04cc085e92
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    282cc0b View commit details
    Browse the repository at this point in the history
  41. Add zsh completion for 'dockerd --default-shm-size'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: e4c858dba4f1a11ddc25e14b0124c64bc1bb16a9
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b90b877 View commit details
    Browse the repository at this point in the history
  42. Add zsh completion for 'docker {ps,service ls} --filter expose|publish'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: d36a82bcaf46f59be3425ebb7e1d5538c4f72718
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5198d70 View commit details
    Browse the repository at this point in the history
  43. Add zsh completion for 'docker {service ls,stack services} --format'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: f8462e533e7a79bd8004291725ae56c94e62f753
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a725b24 View commit details
    Browse the repository at this point in the history
  44. Fix bash completion for --log-opt mode

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: af095f572e6cc1c5269e0047b44823d71aae1baf
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2d75a5d View commit details
    Browse the repository at this point in the history
  45. Add bash completion for docker plugin upgrade

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f2aab003216837a57220098b7f401fdf148b5282
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f742188 View commit details
    Browse the repository at this point in the history
  46. Convert script shebangs from "#!/bin/bash" to "#!/usr/bin/env bash"

    This is especially important for distributions like NixOS where `/bin/bash` doesn't exist, or for MacOS users who've installed a newer version of Bash than the one that comes with their OS.
    
    Signed-off-by: Andrew "Tianon" Page <[email protected]>
    Upstream-commit: e6a4e7507ccf758ecde6f461cf3e546c15f20a2a
    Component: cli
    tianon authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b62be1d View commit details
    Browse the repository at this point in the history
  47. Add cache invalidation in zsh completion when the DOCKER_HIDE_LEGACY_…

    …COMMANDS envvar changes
    
    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 8691d0dd686e0dc622dc906149d1e5dbc0e99d4c
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f7828d3 View commit details
    Browse the repository at this point in the history
  48. Fix useless trailing backslash in zsh completion

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: a93d410af76ef3401b43d4f41edc43d9c3ecf97b
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b41c5d7 View commit details
    Browse the repository at this point in the history
  49. Add zsh completion for missing 'docker plugin' commands and options

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: d5c236ca2079bc7cc6a02d02eec52232d3ca04fa
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    07f5778 View commit details
    Browse the repository at this point in the history
  50. Add zsh completion for 'docker checkpoint' commands

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 6108385baad0c02aa978314f943a322c9fc78ce9
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    14c4467 View commit details
    Browse the repository at this point in the history
  51. Add zsh completion for 'docker service logs' command

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 924aff0cd4040a4c75d59db0c23b08361102779a
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    aa0cc42 View commit details
    Browse the repository at this point in the history
  52. Fix bash completion for start --checkpoint

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f004bb9cf91daa0488d4f20a76771411a515b753
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e990a45 View commit details
    Browse the repository at this point in the history
  53. Add plugin socket related debug docs.

    Signed-off-by: Anusha Ragunathan <[email protected]>
    Upstream-commit: ab7522c939d6684691f1d09898c7adda7244decb
    Component: cli
    anusha-ragunathan authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    be42fef View commit details
    Browse the repository at this point in the history
  54. Update plugin_volume apidocs for v2

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: 38ac6860eb59b2e2d044a51c149a4ea5bae3d96b
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5c08d35 View commit details
    Browse the repository at this point in the history
  55. Add zsh completion for docker log options 'max-buffer-size|mode'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 8c14c4f001c7ad80d55ae50501530001a729a999
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    53eb368 View commit details
    Browse the repository at this point in the history
  56. Fix some Liquid errors

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: f36bcf1acd86913cf6e0b64b0b5be659bae54096
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4ddd044 View commit details
    Browse the repository at this point in the history
  57. Add example for --device-cgroup-rule to create reference

    Signed-off-by: Kenfe-Mickael Laventure <[email protected]>
    Upstream-commit: dd6886657dc1eabe1065a8b8084c78dc97e50e42
    Component: cli
    mlaventure authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a1fc8b3 View commit details
    Browse the repository at this point in the history
  58. why there are so many mistakes in our repo (up to /cmd)

    Signed-off-by: Aaron.L.Xu <[email protected]>
    Upstream-commit: 8279870a1f807579e051069b7472307a2cfd005d
    Component: cli
    xulike666 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    d75af76 View commit details
    Browse the repository at this point in the history
  59. Add --format to docker service ps

    This fix tries to address the issue raised in 27189 where
    it is not possible to support configured formatting stored in
    config.json.
    
    Since `--format` was not supported in `docker service ps`,
    the flag `--format` has also been added in this fix.
    
    This fix
    1. Add `--format` to `docker service ps`
    2. Add `tasksFormat` to config.json
    3. Add `--format` to `docker stack ps`
    4. Add `--format` to `docker node ps`
    
    The related docs has been updated.
    
    An integration test has been added.
    
    This fix fixes 27189.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 1328bb444012b6ae2333e33075a19ab3a98bbaf6
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    bc16584 View commit details
    Browse the repository at this point in the history
  60. Add daemon flag to set no_new_priv as default for unprivileged contai…

    …ners.
    
    Signed-off-by: Daniel Zhang <[email protected]>
    Upstream-commit: 218740abc725e7f95d4a141a20c6a0f4fff21cd9
    Component: cli
    jmzwcn authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    400bf05 View commit details
    Browse the repository at this point in the history
  61. Fix whitespace error.

    Signed-off-by: Andrew McDonnell <[email protected]>
    Upstream-commit: 5140cef92af441fb4ec94452a6ce25b23bf9058d
    Component: cli
    pastcompute authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e62d9d7 View commit details
    Browse the repository at this point in the history
  62. add rollback explanation to docker service update command document

    Signed-off-by: erxian <[email protected]>
    Upstream-commit: 1869390de8ce10a89907d3a57faf75b42abc501b
    Component: cli
    erxian authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6669309 View commit details
    Browse the repository at this point in the history
  63. fix the type

    Signed-off-by: yupengzte <[email protected]>
    Upstream-commit: 6f3f9e384cb1c81802d0e8063b85d0e25bfe7629
    Component: cli
    YuPengZTE authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2cc38cf View commit details
    Browse the repository at this point in the history
  64. [Docs] Add docs for stating stopped containers

    This commit adds docs with example showing `docker stats` stopped
    containers.
    
    Signed-off-by: Zhang Wei <[email protected]>
    Upstream-commit: 12053f480b08544cacbeb31f73c372953130a4bb
    Component: cli
    WeiZhang555 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a7d5248 View commit details
    Browse the repository at this point in the history
  65. Delete dots to align with other commands description

    Signed-off-by: yupengzte <[email protected]>
    Upstream-commit: 21f6dce0a00e72844f30237769924a7653a099c2
    Component: cli
    YuPengZTE authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    dba622e View commit details
    Browse the repository at this point in the history
  66. Clarify why hosts in daemon.json does not work

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: e66bc570391fc43c75af8947c240b32483732779
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1e8d9e0 View commit details
    Browse the repository at this point in the history
  67. Activate bash completion for Windows executable

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: bf0f1591756134cfb20ad90856824a80e42bc5eb
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    0e004eb View commit details
    Browse the repository at this point in the history
  68. Add bash completion for missing filters of docker node ls

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 170fa8ca4c56582826dd91a4b876e728a3d845f7
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e0bd29f View commit details
    Browse the repository at this point in the history
  69. Add completion for --filter desired-state=shutdown

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 0ec2d368a85766bb5be91c4b2c9c5604b0e34e5b
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6ad7098 View commit details
    Browse the repository at this point in the history
  70. Fix bash completion for docker service ps --filter node

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 09b2383b91a97b0fe8d950f927ffb82637a00633
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ff678e4 View commit details
    Browse the repository at this point in the history
  71. Add --add-host for docker build

    Signed-off-by: Tony Abboud <[email protected]>
    Upstream-commit: 174d9f0097026339c6dc7f661567e373f251e412
    Component: cli
    tabboud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    d9e38bf View commit details
    Browse the repository at this point in the history
  72. Add bash completion for docker build --add-host

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: a584bd3b1ae2ab2a61b7359137f540fbb70e57ff
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6d2c16f View commit details
    Browse the repository at this point in the history
  73. Service creation using network plugin filters.

    Signed-off-by: Anusha Ragunathan <[email protected]>
    Upstream-commit: 93344b57f3c876a08b0f518b9fe2e41bf211c6d1
    Component: cli
    anusha-ragunathan authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    bcb5191 View commit details
    Browse the repository at this point in the history
  74. Remove incorrect duplicate phrase from build.md

    A phrase from the "Text files" section in build.md was incorrectly duplicated under the "Tarball contexts" section.
    
    Signed-off-by: Peter Jaffe <[email protected]>
    Upstream-commit: 3a9b35dfa4dc58668789fe494599f05307d01f15
    Component: cli
    pjaffe authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    03bbd2f View commit details
    Browse the repository at this point in the history
  75. Hide aliases in bash completion of docker node|service

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 9f2d9da2719adbb1ed53e796658e1858dbeb4acc
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    bad3496 View commit details
    Browse the repository at this point in the history
  76. Add --stop-signal for service create and service update

    This fix tries to address the issue raised in 25696 where
    it was not possible to specify `--stop-signal` for `docker service create`
    and `docker service update`, in order to use special signal to stop
    the container.
    
    This fix adds `--stop-signal` and update the `StopSignal` in `Config`
    through `service create` and `service update`.
    
    Related docs has been updated.
    
    Integration test has been added.
    
    This fix fixes 25696.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: e9457714cffcd22543f6421426c51b55b6bf3079
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ded0855 View commit details
    Browse the repository at this point in the history
  77. remove Jekyll tags from CLI reference

    These Markdown files are now embedded in a YAML
    file for templating in the documentation, and
    these special markers are no longer needed.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 8e7dd976f87e30e7286ff6e60e0928a0757627d1
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    fec035e View commit details
    Browse the repository at this point in the history
  78. Bash completion for docker service ps completes only one service

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 85db6243171e9c3e99539b96f2bf4e5a0d12c896
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a39ef73 View commit details
    Browse the repository at this point in the history
  79. Update index.md

    Signed-off-by: Wang Jie <[email protected]>
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 2c9f862eafb1002fa12edaa84c2350c6be1b0c17
    Component: cli
    scjane authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4a9d19f View commit details
    Browse the repository at this point in the history
  80. update deprecation dates

    Signed-off-by: Victor Vieux <[email protected]>
    Upstream-commit: 04731761bc1231c3c50bdf12f13eecdee3fa057d
    Component: cli
    vieux authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    0d54231 View commit details
    Browse the repository at this point in the history
  81. Improve POSIX compatibility of bash completion

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 9f967c7050573fc0ab63d35ac37d8389df6c371e
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e63c8ee View commit details
    Browse the repository at this point in the history
  82. Topology-aware scheduling

    This adds support for placement preferences in Swarm services.
    
    - Convert PlacementPreferences between GRPC API and HTTP API
    - Add --placement-pref, --placement-pref-add and --placement-pref-rm to CLI
    - Add support for placement preferences in service inspect --pretty
    - Add integration test
    
    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: 0248b4df543f84087eb612f7663ec8631205cef1
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    951746d View commit details
    Browse the repository at this point in the history
  83. fix some typos from module contrib to man

    Signed-off-by: Aaron.L.Xu <[email protected]>
    Upstream-commit: f5fc4c26f34bd27bd8f3378caefdb633cf76dd67
    Component: cli
    xulike666 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    efe7f44 View commit details
    Browse the repository at this point in the history
  84. Add support for the "rollback" failure action

    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: 8271c2a624ced6f8ff1599bb0c5ec8d7fd281330
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    43638de View commit details
    Browse the repository at this point in the history
  85. Add support for rollback flags

    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: 33ae7294566b44901ebeac6b13438942f445c7df
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    33d9e62 View commit details
    Browse the repository at this point in the history
  86. Add bash completion for service create|update --rollback-*

    Also remove wrong completion for `docker service create --rollback`
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 0ada299b10c4f9e829d6a64a600faa0b3f6c9f68
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    09b39a7 View commit details
    Browse the repository at this point in the history
  87. Improve bash completion for `service create|update --update-failure-a…

    …ction`
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 0f47a7b1effd34f8a5017e1f8635a14babbfb66d
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    eeef5fa View commit details
    Browse the repository at this point in the history
  88. Add support for command aliases to bash completion of docker volume

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 77cdc06233cf56d1e4589ffa8ae7d1f101d0b698
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    d740c90 View commit details
    Browse the repository at this point in the history
  89. Improved aarch64 build

    - Added 'golint', 'yamllint', and 'swagger'
    - Fixed man/Dockerfile.aarch64 by bootstrapping Go 1.7.5
    
    Signed-off-by: Boris Pruessmann <[email protected]>
    Upstream-commit: 39b2f9dd8f7d1d07937e7df59bba40c7113effdc
    Component: cli
    docbobo authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e6b3880 View commit details
    Browse the repository at this point in the history
  90. Incorporated feedback from review

    Signed-off-by: Boris Pruessmann <[email protected]>
    Upstream-commit: 6f4f45a134f3f9192bc7f2f86f9c88bcc703cb63
    Component: cli
    docbobo authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2a91e4f View commit details
    Browse the repository at this point in the history
  91. added listing for Nimble Storage's volume plugin

    Signed-off-by: Keith Hudgins <[email protected]>
    
    updated nimble plugin url
    Upstream-commit: 01468292d64e09da706d91d65ee66529627544a4
    Component: cli
    khudgins authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    985040a View commit details
    Browse the repository at this point in the history
  92. Fix description of docker run|create --stop-signal in help message

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 2fcb361c55352ca0203d28394d64135fcdaa2ddc
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    bab7965 View commit details
    Browse the repository at this point in the history
  93. Update vlan-networks.md

    Some small changes to get the examples so that they run without error for me.
    Improve consistency of presentation of the examples.
    Fix some typos
    
    Signed-off-by: kevinfeyrer <[email protected]>
    
    Update vlan-networks.md
    
    Restore "ip" accidentally removed
    
    Signed-off-by: kevinfeyrer <[email protected]>
    
    Update vlan-networks.md
    
    Change prompt from container "$$" to host "$"
    
    Signed-off-by: kevinfeyrer <[email protected]>
    
    Update vlan-networks.md
    
    Some changes suggested by cpuguy83 and thaJeztah
    
    Signed-off-by: kevinfeyrer <[email protected]>
    Upstream-commit: dd34522fa85a2d18cad6b04561014bc09ea4d326
    Component: cli
    kevinfeyrer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    710021b View commit details
    Browse the repository at this point in the history
  94. Fix typo in run.md documentation

    Signed-off-by: John Laswell <[email protected]>
    Upstream-commit: beacad8f6c57299589c12a89ff2d26887a48fa15
    Component: cli
    jlaswell authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    15aa8d0 View commit details
    Browse the repository at this point in the history
  95. Add bash completion for service create|update --stop-signal

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f6f45c14ec5f15010edff9c31519eb95c08447d6
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    326047d View commit details
    Browse the repository at this point in the history
  96. Improve bash completion for create|run --stop-signal

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: fa5297b85347ec9f08d2adbe5c8e41d913d99eca
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f439e07 View commit details
    Browse the repository at this point in the history
  97. Fix directive example to match description

    The description claims the directive is appearing after a comment but
    the sample Dockerfile has the directive appear after an instruction.
    Changed the ordering of the lines to match the example's description.
    
    Signed-off-by: Remy Suen <[email protected]>
    Upstream-commit: 558b8923ab0a63e6ed0a9489ab375d53ac7b182d
    Component: cli
    rcjsuen authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    224077d View commit details
    Browse the repository at this point in the history
  98. Fix bash completion for service constraints

    - Remove bash completion for `service update --constraint`
    - Add bash completion for `service update --constraint-{add,rm}`
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 380be7f725cade4a108c360566f6a4cb289fdfd2
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4a4c095 View commit details
    Browse the repository at this point in the history
  99. Fix markdown in references for Kramdown

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: 1f531be8ab5c417816285500d12fd7e42aeca6b1
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    55f899c View commit details
    Browse the repository at this point in the history
  100. Enhance network inspect to show all tasks, local & non-local, in swar…

    …m mode
    
    Signed-off-by: Santhosh Manohar <[email protected]>
    Upstream-commit: 84ccb004865a66b432cc07ad4a13ab9c194898cd
    Component: cli
    Santhosh Manohar authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    03b30a9 View commit details
    Browse the repository at this point in the history
  101. Add bash completion for topology-aware scheduling

    - bash completion for `docker service create --placement-pref`
    - bash completion for `docker service update --placement-pref-{add,rm}`
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: f50f5f89443530e2dc95cc145dc2b360e76c5e3d
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8be15cc View commit details
    Browse the repository at this point in the history
  102. Remove docs for dockerd --no-new-privileges

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 48332a6aebb59fb3ea15dffb6bb3f2a4ba133550
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7ef9528 View commit details
    Browse the repository at this point in the history
  103. Fix fish autocompletion with custom ps output

    In the docker config.json, if `psFormat` or `imagesFormat` is set to a
    non-standard format, it breaks autocompletion.
    
    This fixes the issue by using a custom format.
    
    Signed-off-by: Chris Gibson <[email protected]>
    Upstream-commit: 25654c4e13180c73cc3b7cee5420e11c0fb54f9e
    Component: cli
    christopher-gibson authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e1a7a66 View commit details
    Browse the repository at this point in the history
  104. Update bash completion for docker service logs

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 145bb0218da4f6a05b224847f718d9943032500b
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    79b127d View commit details
    Browse the repository at this point in the history
  105. Add --prune to stack deploy.

    Add to command line reference.
    
    Signed-off-by: Daniel Nephin <[email protected]>
    Upstream-commit: 9888942fbcca54271de23a2e181fd59e61004c70
    Component: cli
    dnephin authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7c4a2f8 View commit details
    Browse the repository at this point in the history
  106. docs: remove outdated reference to updating /etc/hosts

    Starting with docker 1.10, docker no longer uses
    /etc/hosts for service discovery, but uses an
    embedded DNS server. This patch removes a reference
    to the old (pre 1.10) behavior.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: afe91a51209b4f9f690549551e8c1ad87e747268
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e132268 View commit details
    Browse the repository at this point in the history
  107. docs: added support for CLI yaml file generation

    Signed-off-by: French Ben <[email protected]>
    Signed-off-by: Tibor Vass <[email protected]>
    Upstream-commit: 6fe11272d3c6aec2439289675d642eba3f647438
    Component: cli
    French Ben authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    d857ffd View commit details
    Browse the repository at this point in the history
  108. Support --filter mode=global|replicated for docker service ls

    This fix tries to address the request in 31325 by adding
    `--filter mode=global|replicated` to `docker service ls`.
    
    As `docker service ls` has a `MODE` column by default, it is natural
    to support `--filter mode=global|replicated` for `docker service ls`.
    
    There are multiple ways to address the issue. One way is to pass
    the filter of mode to SwarmKit, another way is to process the filter
    of mode in the daemon.
    
    This fix process the filter in the daemon.
    
    Related docs has been updated.
    
    An integration test has been added.
    
    This fix fixes 31325.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: d43b0f126935e2282684deba0aa727a78fd33957
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2049ccb View commit details
    Browse the repository at this point in the history
  109. misleading default for --update-monitor duration

    Signed-off-by: erxian <[email protected]>
    Upstream-commit: ffd24bd8e854f0cdb4f112af1a05fb1abba558ae
    Component: cli
    erxian authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    eb0bef3 View commit details
    Browse the repository at this point in the history
  110. Fix typo in sample output

    Changed `ICONTAINER ID` to `CONTAINER ID`.
    
    Signed-off-by: Remy Suen <[email protected]>
    Upstream-commit: ea6ba6963984230660065031ef9681e2b005dbe8
    Component: cli
    rcjsuen authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    9989aea View commit details
    Browse the repository at this point in the history
  111. Add bash completion for network inspect --verbose

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 977e1238ec320c1b148fce8a4542cc917894ed9f
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a402058 View commit details
    Browse the repository at this point in the history
  112. Add bash completion for node|service|stack ps --format

    Also add `--quiet|-q` where it was missing.
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 36f5fc7909aa5a3dddfaf1e3f5fc463e981b9963
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    248439d View commit details
    Browse the repository at this point in the history
  113. Add bash completion for service ls --filter mode

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: d9192b85d542a00ebdf4ed7902879ed31db900e4
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    74ed308 View commit details
    Browse the repository at this point in the history
  114. Merge pull request #31875 from toolchainX/patch-2

    update service-create.md
    (cherry picked from commit 0f1ee840143b230259544dbfc03205dafcd285ad)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 8dd6f6d34253e3c572f3ae0f09da6467f6024be6
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    10bab1a View commit details
    Browse the repository at this point in the history
  115. Improve bash completion for docker rm

    `docker rm` can delete containers in state=created, too.
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 1c56dfab6f0ccba67e0564f4ec8d1f9905d7a8cd
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    aab4ed7 View commit details
    Browse the repository at this point in the history
  116. Fix zsh-completion for containers in status 'created'

    This patch makes sure that containers in the created-stated are
    counted as stopped containers. Otherwise if you create a container,
    don't run it and type: "docker rm ", followed by pressing tab in zsh, it won't show up.
    
    Signed-off-by: Nikolas Garofil <[email protected]>
    Signed-off-by: Nikolas Garofil <[email protected]>
    Upstream-commit: 7150d7328cc57891e4febc0b14a65953399669a9
    Component: cli
    uagaro authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    cb9f0f9 View commit details
    Browse the repository at this point in the history
  117. Fix 'Specify a Dockerfile (-f)' heading in Engine CLI Docs.

    Signed-off-by: Ricardo N Feliciano <[email protected]>
    Upstream-commit: 30b0334917e8e1778906e6033cf628ecfe1fae20
    Component: cli
    FelicianoTech authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    85f1d4b View commit details
    Browse the repository at this point in the history
  118. Bash completion for docker node update completes only one node

    `docker node update` accepts only one node.
    Before this change, bash completion would complete additional nodes.
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: bd1c58ccaf0d5514ada266aadc3778919d9d2e67
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f9360e3 View commit details
    Browse the repository at this point in the history
  119. Add format to secret ls

    Signed-off-by: Boaz Shuster <[email protected]>
    Upstream-commit: 33166e33648b0341b3821b2fcff97198a943c425
    Component: cli
    boaz0 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    45b7775 View commit details
    Browse the repository at this point in the history
  120. modify docker plugin sshfs entrypoint

    Signed-off-by: Jimmy Song <[email protected]>
    Upstream-commit: 3e4d1cacf49e855f68eeb452b2b0c71bdc2165c0
    Component: cli
    rootsongjc authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    9d0fc67 View commit details
    Browse the repository at this point in the history
  121. Add reference filter to the list of available filters

    The `reference` filter is documented in the file, but is not present
    in the list of available filters.
    
    Signed-off-by: Vincent Demeester <[email protected]>
    Upstream-commit: d42d6b79391fa7586c5372c096cf9f43e224e0d6
    Component: cli
    vdemeester authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7132065 View commit details
    Browse the repository at this point in the history
  122. Documentation for bind mount consistency flags.

    Signed-off-by: Jeremy Yallop <[email protected]>
    Upstream-commit: a7c4324c4703dcb4e21023720a98e0f39d31accf
    Component: cli
    yallop authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    71e8f66 View commit details
    Browse the repository at this point in the history
  123. Ignore built-in allowed build-args in image history

    Removes the build-args from the image history if they are in the
    BuiltinAllowedBuildArgs map unless they are explicitly defined in an ARG
    instruction.
    
    Signed-off-by: Dave Tucker <[email protected]>
    Upstream-commit: 84e63b3abbf8dc4fba3bbe005888e28831b98b7c
    Component: cli
    Dave Tucker authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    05ecc5f View commit details
    Browse the repository at this point in the history
  124. Update system df docs to call out performance implications

    Signed-off-by: Wayne Song <[email protected]>
    Upstream-commit: 865b35703b65c9b5d23411785874fdcf3fdc77d8
    Component: cli
    Wayne Song authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    edbe4f6 View commit details
    Browse the repository at this point in the history
  125. Add note regarding Windows VOLUME limitations

    Signed-off-by: John Maguire <[email protected]>
    Upstream-commit: b3da7041543ddff8c5ac5ca5b2281db31d1170c7
    Component: cli
    John Maguire authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3fb8760 View commit details
    Browse the repository at this point in the history
  126. remove the duplicate line from doc and rebase with master for 'exampl…

    …e of ADD and COPY with special characters file name'
    
    Signed-off-by: Foysal Iqbal <[email protected]>
    Upstream-commit: 35cc51b4f6b3ea48af312991d6821925f7564efd
    Component: cli
    ffoysal authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f6d6335 View commit details
    Browse the repository at this point in the history
  127. Add support in plugin config for accessing host ipc namespace.

    Plugins might need access to host ipc namespace. A good usecase is
    a volume plugin running iscsi multipath commands that need access to
    host kernel locks.
    Tested with a custom plugin (aragunathan/global-net-plugin-full) that's
    built with `"ipchost" : true` in config.json. Observed using
    `readlink /proc/self/ns/ipc` that plugin and host have the same ns.
    
    Signed-off-by: Anusha Ragunathan <[email protected]>
    Upstream-commit: 9111051d9805eeb259f5ac7c815b3695f028d180
    Component: cli
    anusha-ragunathan authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    fa8eda0 View commit details
    Browse the repository at this point in the history
  128. Add pid host support

    Tested using global-net-plugin-ipc which sets PidHost in config.json.
    
    Plugins might need access to host pid namespace. Add support for that.
    Tested using aragunathan/global-net-plugin-ipc which sets "pidhost" in
    config.json. Observed using `readlink /proc/self/ns/pid` that plugin and
    host have the same ns.
    
    Signed-off-by: Anusha Ragunathan <[email protected]>
    Upstream-commit: c9f1050226cee4f79dc20b0124f273969414bd66
    Component: cli
    anusha-ragunathan authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8d5753a View commit details
    Browse the repository at this point in the history
  129. Add zsh completion for 'docker service {create,update} --placement-pref'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 0e6eb9976beab68f91166094aa8d4b5e800fa0f2
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    37fbe0e View commit details
    Browse the repository at this point in the history
  130. Add zsh completion for 'docker build --add-host'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 9a46875a9534be29b65fb70277e3d122dcc1aacc
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    759c540 View commit details
    Browse the repository at this point in the history
  131. Add zsh completion for 'docker network inspect --verbose'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 80482d7f967987452ccaee92161277061925f385
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2603441 View commit details
    Browse the repository at this point in the history
  132. Add zsh completion for 'docker service {create,update} --stop-signal'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 7931960ded531678880f16170a00db67252c4963
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1116d4a View commit details
    Browse the repository at this point in the history
  133. Add zsh completion for 'docker logs --no-task-ids --no-trunc'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: a7af767c0d13e981fe7aba9a47fed6076a998f33
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    bb72ecd View commit details
    Browse the repository at this point in the history
  134. Add zsh completion for 'docker service {create,update} --rollback-*'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 4cb6ab4eb551e1e54aca3d40c0a3f9e29a945505
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1629ef0 View commit details
    Browse the repository at this point in the history
  135. Add zsh completion for 'docker secret ls --format'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 396925bab0bf5132739e74b8f00bb010fcf534db
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c2401dd View commit details
    Browse the repository at this point in the history
  136. Add zsh completion for 'docker service ls --filter mode'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 9be3a2cec8cea6c20783ecc50ded343bb9ea863e
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e95348f View commit details
    Browse the repository at this point in the history
  137. Add --filter scope=swarm|local for docker network ls

    This fix tries to address the request in 31324 by adding
    `--filter scope=swarm|local` for `docker network ls`.
    
    As `docker network ls` has a `SCOPE` column by default,
    it is natural to add the support of `--filter scope=swarm|local`.
    
    This fix adds the `scope=swarm|local` support for
    `docker network ls --filter`.
    
    Related docs has been updated.
    
    Additional unit test cases have been added.
    
    This fix fixes 31324.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 6f22676f0bce0bba1c88d39d89188dbcd71b4156
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1624cad View commit details
    Browse the repository at this point in the history
  138. Add bash completion for network ls --filter scope

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: d9a648caed0470b5a791f0e3271fa9cdcf20068d
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3823a21 View commit details
    Browse the repository at this point in the history
  139. update 3 old docs about secret in docs/reference/commandline/

    Signed-off-by: uhayate <[email protected]>
    Upstream-commit: da2f4802b625be2908977342282acb40cb981008
    Component: cli
    uhayate authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c4bcd55 View commit details
    Browse the repository at this point in the history
  140. Windows: Remove --credentialspec flag

    Signed-off-by: John Howard (VM) <[email protected]>
    Upstream-commit: a10f63f0ce762a971329bed0e3c29b30a20acc51
    Component: cli
    John Howard (VM) authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4cadaa0 View commit details
    Browse the repository at this point in the history
  141. Allow user to modify ingress network

    Signed-off-by: Alessandro Boch <[email protected]>
    Upstream-commit: bf7ba6964b335d3966b2345578c40daad67c68cd
    Component: cli
    aboch authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    18a997b View commit details
    Browse the repository at this point in the history
  142. refine docs to describe experimental feature docker build --squash

    Signed-off-by: erxian <[email protected]>
    Upstream-commit: ab4ce19224b1639278f330056bd48657fe99465f
    Component: cli
    erxian authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ce0ae54 View commit details
    Browse the repository at this point in the history
  143. Add missing zsh completion for 'docker plugin ls'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 51a4fbbf1f8728c5be4c68b9cdc6c21250101706
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    fdceadb View commit details
    Browse the repository at this point in the history
  144. Add zsh completion for 'docker network ls --filter scope'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 91d886adc45034331c6d2ba655f6d2ee6ac32f27
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    9f1816c View commit details
    Browse the repository at this point in the history
  145. Update "man" of docker-run

    Signed-off-by: mapk0y <[email protected]>
    Upstream-commit: 06428a4955a7d38cae048123871d401ba0078918
    Component: cli
    mapk0y authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    62bec22 View commit details
    Browse the repository at this point in the history
  146. Add cli reference docs for root-level commands

    Signed-off-by: Vincent Demeester <[email protected]>
    Upstream-commit: b8d3480fc03db42275bbd7023d9e88c6895edd21
    Component: cli
    vdemeester authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    95fb350 View commit details
    Browse the repository at this point in the history
  147. Add details for inspect command usage

    Signed-off-by: Eric G. Noriega <[email protected]>
    Signed-off-by: Vincent Demeester <[email protected]>
    Upstream-commit: 3c6718905cf5b58d7b6daa5ce49704ba9c866834
    Component: cli
    egnoriega authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    232ce24 View commit details
    Browse the repository at this point in the history
  148. specify max size for secret in doc

    Signed-off-by: allencloud <[email protected]>
    Upstream-commit: 87f6e631ea89a410b806f5fa90763bfdcf10a3d1
    Component: cli
    allencloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6af7fec View commit details
    Browse the repository at this point in the history
  149. Fix indenting in table of contents

    Fixes #30841. The "filter" section had the wrong header size, which
    caused sections following it to have the wrong indentation in the
    right-side table of contents.
    
    Signed-off-by: Greg Pflaum <[email protected]>
    Upstream-commit: a616b0c305c71eae30808f0751c60979faf3735e
    Component: cli
    gpflaum authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    31de8f7 View commit details
    Browse the repository at this point in the history
  150. make secret ls support filters in CLI

    Signed-off-by: allencloud <[email protected]>
    Upstream-commit: 4903dd2ca2d276e9737775236fd7301641551abd
    Component: cli
    allencloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c4a0397 View commit details
    Browse the repository at this point in the history
  151. [docs] Fix incorrect docker inspect example

    Fixed incorrect `docker inspect` example in docs.
    Verify by running the old and new commands.
    
    fixes #31900
    
    Signed-off-by: David Xia <[email protected]>
    Upstream-commit: 5840993e1c9fd6395dcb81668f08c64b99542a28
    Component: cli
    davidxia authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3257e02 View commit details
    Browse the repository at this point in the history
  152. Update docs for experimental features

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 2e9e71f59a3f764e96fa2c6de9d649b72ea85eee
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ba598c6 View commit details
    Browse the repository at this point in the history
  153. Updated push.md with progress bar info

    Signed-off-by: Ian Philpot <[email protected]>
    Upstream-commit: d5e7e1c70cf52037f1e5dd7bae6c96edea680109
    Component: cli
    ianphil authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e804e2f View commit details
    Browse the repository at this point in the history
  154. Delete extraneous H1 title

    Signed-off-by: JimGalasyn <[email protected]>
    Upstream-commit: 64704a2a80ea56196ef7b654ae2298e6e55e0ba0
    Component: cli
    JimGalasyn authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    93d2fdc View commit details
    Browse the repository at this point in the history
  155. fix inconsistency for

    Signed-off-by: yuexiao-wang <[email protected]>
    Upstream-commit: 9bd9b918be36a1bbab9c0feef517cf1e08b4dcc7
    Component: cli
    yuexiao-wang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    34a6afc View commit details
    Browse the repository at this point in the history
  156. Add bash completion for secret ls --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: c6875037bbfe1c45dd728a479e6dc243f59c63d5
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    02fcc93 View commit details
    Browse the repository at this point in the history
  157. provide examples

    Signed-off-by: yuexiao-wang <[email protected]>
    Upstream-commit: 2bc240c0f239e89205bc5c1c22df976cef417284
    Component: cli
    yuexiao-wang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5ade5c4 View commit details
    Browse the repository at this point in the history
  158. Add support for --type=secret in docker inspect

    Signed-off-by: Vincent Demeester <[email protected]>
    Upstream-commit: 578a431fb3e6ac18e80018a5fb0e6e5896a1e716
    Component: cli
    vdemeester authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    9fe583a View commit details
    Browse the repository at this point in the history
  159. Deprecate --graph flag; Replace with --data-root

    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    Upstream-commit: 804858fc6f33f71fb7c33842203efcd199e783ff
    Component: cli
    Josh Hawn authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c738816 View commit details
    Browse the repository at this point in the history
  160. Add conflict check for flags, and update deprecation versions

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 356d08b14c23ed613aab5334bcb340a16b04628a
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    80eee63 View commit details
    Browse the repository at this point in the history
  161. Clarify meaning of docker attach

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: 05bc162dc46c9484a6706a6dbc81d75103aacff8
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    0965592 View commit details
    Browse the repository at this point in the history
  162. Merge pull request #32265 from breuner/patch-1

    Updated legacy_plugins.md to include BeeGFS plugin
    (cherry picked from commit d0057bd12dae5276b83e931e9e9ea185c58486a2)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 82f097e8d580cfbe757bf9148b3f29fba3e3b664
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    cdb0625 View commit details
    Browse the repository at this point in the history
  163. Add zsh completion for 'docker {node,service,stack} ps --format'

    Signed-off-by: Steve Durrheimer <[email protected]>
    Upstream-commit: 5ef17bfc6886d18c97cf0f993ac00495f7e4c3c3
    Component: cli
    sdurrheimer authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4cb2ae0 View commit details
    Browse the repository at this point in the history
  164. Add bash completion for secret ls --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 10638a7a3e5849bcc6d1ac92805f9fe2203e255b
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f09c3fd View commit details
    Browse the repository at this point in the history
  165. Improve bash completion for --log-opt awslogs-create-group

    Add completion for the possible values `true`|`false`, correct sort order.
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 1a9663696ded83dd99b628ca29c18850b808ce54
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3fd631d View commit details
    Browse the repository at this point in the history
  166. Synchronous service create and service update

    Change "service create" and "service update" to wait until the creation
    or update finishes, when --detach=false is specified. Show progress bars
    for the overall operation and for each individual task (when there are a
    small enough number of tasks), unless "-q" / "--quiet" is specified.
    
    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: c8e607205f9b893f053c9a0b0de6b675bd12772f
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    dc4ce81 View commit details
    Browse the repository at this point in the history
  167. fix documentation error: volume-opt in service create

    Signed-off-by: pacoxu<[email protected]>
    Signed-off-by: pacoxu <[email protected]>
    Upstream-commit: 764c84342dba83ccb706d4f12370fa5e61161a69
    Component: cli
    pacoxu authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6d717fc View commit details
    Browse the repository at this point in the history
  168. Add PORTS field for docker service ls (ingress)

    This fix is related to 30232 wherw `docker service ls`
    does not show `PORTS` information like `docker service ps`.
    
    This fix adds `PORTS` fields for services that publish
    ports in ingress mode.
    
    Additional unit tests cases have been updated.
    
    This fix is related to 30232.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 04afeb636e2fa0e76c25a3aeef4bc6bf48889e8e
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b8a1f0d View commit details
    Browse the repository at this point in the history
  169. Docs: Add the flag --api-enable-cors to deprecated.md

    Signed-off-by: Karthik Nayak <[email protected]>
    Upstream-commit: ff44ffc576599124c9e2ac1292a16d7132dc8a55
    Component: cli
    KarthikNayak authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8905ea0 View commit details
    Browse the repository at this point in the history
  170. Escape some double brackets

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: 0e86bfb1e0a5165f96714d7a204be5fd33d65caf
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4543d90 View commit details
    Browse the repository at this point in the history
  171. Add --format for docker node ls

    This fix tries to address the comment moby/moby#30376 (comment)
    where it was not possible to specify `--format` for `docker node ls`. The `--format` flag
    is a quite useful flag that could be used in many places such as completion.
    
    This fix implements `--format` for `docker node ls` and add `nodesFormat` in config.json
    so that it is possible to specify the output when `docker node ls` is invoked.
    
    Related documentations have been updated.
    
    A set of unit tests have been added.
    
    This fix is related to #30376.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 477ec9bfdd85561c51a580d192d9f791b418323a
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b36d931 View commit details
    Browse the repository at this point in the history
  172. Add hidden placeholder of .Self for docker node ls --format

    This commit adds a hidden placeholder of `.Self` for
    `docker node ls --format` so that if the node is the same
    as the current docker daemon, then a `*` is outputed.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 45f80dccb0ff248cad30141ce8107dcc18cdf6ed
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f46fcd6 View commit details
    Browse the repository at this point in the history
  173. Edits to CLI reference

    Signed-off-by: Misty Stanley-Jones <[email protected]>
    Upstream-commit: 95c05a53c6db30a23764c638ec1fbb8492fafb20
    Component: cli
    Misty Stanley-Jones authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3139e74 View commit details
    Browse the repository at this point in the history
  174. cli: add --mount to docker run

    Signed-off-by: Akihiro Suda <[email protected]>
    Upstream-commit: 61038068026499817ca62afee6cf1a68f5de1d5a
    Component: cli
    AkihiroSuda authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    150b832 View commit details
    Browse the repository at this point in the history
  175. updated Readme.md with fixed deadlinks

    Signed-off-by: prertik <[email protected]>
    Upstream-commit: 4273ca36789c8b987a27cf1d982f1c2c1f93a7c4
    Component: cli
    prertik authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    30106d6 View commit details
    Browse the repository at this point in the history
  176. Added start period option to health check.

    Signed-off-by: Elias Faxö <[email protected]>
    Upstream-commit: c5071b94dabf58443d7b0e21c05cf6bb9b41ab00
    Component: cli
    Elias Faxö authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    429d548 View commit details
    Browse the repository at this point in the history
  177. Add support for update order

    This parameter controls the order of operations when rolling out an
    update task. Either the old task is stopped before starting the new one,
    or the new task is started first, and the running tasks will briefly
    overlap.
    
    This commit adds Rollout to the API, and --update-order / --rollback-order
    flags to the CLI.
    
    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: e434a91221267d20a05c2e5d1779ba7e10e06c33
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    bf4beaf View commit details
    Browse the repository at this point in the history
  178. clarify docker plugin set docs

    Signed-off-by: Victor Vieux <[email protected]>
    Upstream-commit: 051ff3b3034c8fb297a1d9a826c49c16f813cc98
    Component: cli
    vieux authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    9173392 View commit details
    Browse the repository at this point in the history
  179. cli: Allow service's networks to be updated

    Resolve networks IDs on the client side.
    
    Avoid filling in deprecated Spec.Networks field.
    
    Sort networks in the TaskSpec for update stability.
    
    Add an integration test for changing service networks.
    
    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: fc6428390a71e8c850f095393b686892ff98272d
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    cb45fef View commit details
    Browse the repository at this point in the history
  180. Add docs for named build stages

    Signed-off-by: Tonis Tiigi <[email protected]>
    Upstream-commit: 29dd51d2a8c3afeebc3cb8424ce5da1388dec411
    Component: cli
    tonistiigi authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c168469 View commit details
    Browse the repository at this point in the history
  181. Added word to documentation

    Improved documentation by adding word for better sentence structure.
    
    Signed-off-by: Mike Casas <[email protected]>
    Upstream-commit: 8abc802de96f6beaf242f68b9aefcab1166907f9
    Component: cli
    mikecasas authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c3b0801 View commit details
    Browse the repository at this point in the history
  182. Add --cpus support for docker update

    This fix tries to address the issue raised in 31032 where it was
    not possible to specify `--cpus` for `docker update`.
    
    This fix adds `--cpus` support for `docker update`. In case both
    `--cpus` and `--cpu-period/--cpu-quota` have been specified,
    an error will be returned.
    
    Related docs has been updated.
    
    Integration tests have been added.
    
    This fix fixes 31032.
    
    This fix is related to 27921, 27958.
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: f2933f6ea6df3d2cb7d3709eb195075a9e058ee3
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    963782f View commit details
    Browse the repository at this point in the history
  183. Add bash completion for update --cpus

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 0d4b2350fbdd939136cbed3abda56716dae0b0f7
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1162d73 View commit details
    Browse the repository at this point in the history
  184. Implement plugins for logging drivers

    Logging plugins use the same HTTP interface as other plugins for basic
    command operations meanwhile actual logging operations are handled (on
    Unix) via a fifo.
    
    The plugin interface looks like so:
    
    ```go
    type loggingPlugin interface {
      StartLogging(fifoPath string, loggingContext Context) error
      StopLogging(fifoPath)
    ```
    
    This means a plugin must implement `LoggingDriver.StartLogging` and
    `LoggingDriver.StopLogging` endpoints and be able to consume the passed
    in fifo.
    
    Logs are sent via stream encoder to the fifo encoded with protobuf.
    
    Signed-off-by: Brian Goff <[email protected]>
    Upstream-commit: 114cc6ca3a6298505cae5b5cb034a27eccd06e5e
    Component: cli
    cpuguy83 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    672083e View commit details
    Browse the repository at this point in the history
  185. Add bash completion for node ls --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: e3cab9a751dde5bea597f08c6eb6fd0dd25d8ddf
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    222458c View commit details
    Browse the repository at this point in the history
  186. Merge pull request #31848 from thaJeztah/17.04.0-changelog-updates

    [17.04.x] deprecation and changelog updates
    (cherry picked from commit f15f5937514c386ace40a43441dddc28337ca12d)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 0dc44cd964e2a70651b833031152eff293fa0878
    Component: cli
    vdemeester authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    124cf59 View commit details
    Browse the repository at this point in the history
  187. stack rm should accept multiple arguments

    Signed-off-by: Arash Deshmeh <[email protected]>
    Upstream-commit: 98bcbcf77438cc1463f754f21f798083962bba14
    Component: cli
    adshmh authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    35af017 View commit details
    Browse the repository at this point in the history
  188. Let graphdrivers declare diff stream fidelity

    This allows graphdrivers to declare that they can reproduce the original
    diff stream for a layer. If they do so, the layer store will not use
    tar-split processing, but will still verify the digest on layer export.
    This makes it easier to experiment with non-default diff formats.
    
    Signed-off-by: Alfred Landrum <[email protected]>
    Upstream-commit: 4b8712eacbc47ac048d63ab7d5619b02b563f2e7
    Component: cli
    Alfred Landrum authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3dc1ae6 View commit details
    Browse the repository at this point in the history
  189. Remove experimental from service logs

    Service logs API is now stable. Service logs now support all features,
    except retrieving details provided to the log driver.
    
    Signed-off-by: Drew Erny <[email protected]>
    Upstream-commit: 279bbbab27e473ee4ab7c96b92141345df43e157
    Component: cli
    dperny authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c040c93 View commit details
    Browse the repository at this point in the history
  190. Bash completion supports multiple stacks in stack rm

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 50ea10e293563c42e82c32126bfb55f5c32758dd
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    193605c View commit details
    Browse the repository at this point in the history
  191. Make the CLI show defaults from the swarmkit defaults package

    If no fields related to an update config or restart policy are
    specified, these structs should not be created as part of the service,
    to avoid hardcoding the current defaults.
    
    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: 91ca194713c7a052e96d40cf832059fb8a38fd15
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    af4c3ad View commit details
    Browse the repository at this point in the history
  192. Add Dockerfile reference docs for using ARG in FROM

    Also fixed some examples of using `docker build` to clarify that the
    positional argument is a directory, not a file.
    
    Also fixed some terminology. Dockerfiles contain instructions, not directives or
    commands.
    
    Signed-off-by: Daniel Nephin <[email protected]>
    Upstream-commit: 6e40868ade57395d8bec27a65adf528f983996b0
    Component: cli
    dnephin authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    9e2302a View commit details
    Browse the repository at this point in the history
  193. Add docs for reading Dockerfile from stdin.

    Signed-off-by: Daniel Nephin <[email protected]>
    Upstream-commit: 71b0f91129039020576f94958af1fa3a88b5e718
    Component: cli
    dnephin authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    256568f View commit details
    Browse the repository at this point in the history
  194. Clean docker run -e reference docs

    Simplified the docs on how to set environment variables in a
    container. Makes it clear that you have three options, and how
    to use them.
    
    Signed-off-by: Joao Fernandes <[email protected]>
    Upstream-commit: 66cfdff64615112cc0ac950d1b31b81608cb0fb2
    Component: cli
    Joao Fernandes authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a0c49cf View commit details
    Browse the repository at this point in the history
  195. Fix inconsisticy for service logs

    Signed-off-by: yuexiao-wang <[email protected]>
    Upstream-commit: fcdc75de3e34dd409931b2f3954a1689f38f304e
    Component: cli
    yuexiao-wang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    797a7f4 View commit details
    Browse the repository at this point in the history
  196. Update docs of label filter for docker system prune

    This fix updates docs of `label` filter for `docker system prune`.
    
    This fix is related to #30740 and #29999, and specifically to comment
    moby/moby#30740 (comment).
    
    Signed-off-by: Yong Tang <[email protected]>
    Upstream-commit: 40bb4a3b0e68f32b7141a8c5ddd72b7f98cc38e2
    Component: cli
    yongtang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    fb921da View commit details
    Browse the repository at this point in the history
  197. Fix bash-completion script.

    bash-completion script for 'docker build --network' calls
    __docker_plugins, the correct name for this function is
    __docker_plugins_bundled.
    
    Closes #32588
    
    Signed-off-by: Corey Farrell <[email protected]>
    Upstream-commit: 0e75012be14d6a44c125f282fec14704d091f273
    Component: cli
    coreyfarrell authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    6674e3a View commit details
    Browse the repository at this point in the history
  198. Bash completion treats service logs as stable

    Implements the following new CLI features:
    - service logs is no longer experimental
    - service logs also accepts task IDs
    
    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 24d7795c2c3af195a0335bbc3158b0110f9e432f
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    cc04f0b View commit details
    Browse the repository at this point in the history
  199. Add format to the docker system df command

    Signed-off-by: Boaz Shuster <[email protected]>
    Upstream-commit: 9e2467d4749d7f96e7c968603a13f59a7dc10073
    Component: cli
    boaz0 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8530cbe View commit details
    Browse the repository at this point in the history
  200. Implements --format option for docker history command by creating a f…

    …ormatter
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Adds to history documentation for --format
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Adds MarshalJSON to historyContext for {{json .}} format
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Adds back the --human option to history command
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Cleans up formatter around --human option for history, Adds integration test for --format option of history
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Adds test for history formatter checking full table results, Runs go fmt on touched files
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Fixes lint errors in formatter/history
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    Runs go fmt on cli/command/formatter/history.go
    
    Signed-off-by: Jeremy Chambers <[email protected]>
    
    sRemoves integration test for --format option of history
    
    Merges Created and CreatedSince in docker history formatter, Updates docs and tests
    Upstream-commit: aa124aee734329e562c99b3ad2fc8bce43364d6e
    Component: cli
    TheHipbot authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    28a0a6d View commit details
    Browse the repository at this point in the history
  201. Fix markdown indentation level

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 8ca20aee9fe1a5afaacd099e357112e8ed5be2b5
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    de68965 View commit details
    Browse the repository at this point in the history
  202. Minor fixups for history CLI reference

    This does some minor fix-ups in the CLI reference
    for "history", and copies the formattting section to
    the man-pages.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 275d8ab8defc6ca3e9a8785db285b427f4393d28
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7e9087f View commit details
    Browse the repository at this point in the history
  203. Add examples of storage-opts and log-opts for the daemon

    Signed-off-by: Alvin Deng <[email protected]>
    Upstream-commit: d2295d58b2f6bc9619c1c9d1605f7d959a672922
    Component: cli
    alvin319 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2261e89 View commit details
    Browse the repository at this point in the history
  204. Update dockerd.md

    Signed-off-by: Alvin Deng <[email protected]>
    Upstream-commit: 65cf6dd6110f23b1d092d7fbf8682a1a0cdc3cf8
    Component: cli
    alvin319 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7802f53 View commit details
    Browse the repository at this point in the history
  205. Remove bogus statement from bash completion

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 8ea7724f64a72169daca3946a027b5953168d65e
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4e3663b View commit details
    Browse the repository at this point in the history
  206. remove --init-path from client

    Signed-off-by: Antonio Murdaca <[email protected]>
    Upstream-commit: 4977ec1cca156c87ba3966aedc10cdf3b0ce9964
    Component: cli
    runcom authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f495b2a View commit details
    Browse the repository at this point in the history
  207. Clarify where the RUN command runs from

    Also, chained/quoted shell does not work
    
    Signed-off-by: Julien Maitrehenry <[email protected]>
    Upstream-commit: 33fecab492c8799ab0a93afb9bc268d466e0cd25
    Component: cli
    jmaitrehenry authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    3412b21 View commit details
    Browse the repository at this point in the history
  208. Add format to docker stack ls

    Signed-off-by: Boaz Shuster <[email protected]>
    Upstream-commit: 5be9e57c519706e48b33f3291da1c0e0f51947c8
    Component: cli
    boaz0 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    4dee681 View commit details
    Browse the repository at this point in the history
  209. Update legacy_plugins.md to include HBM authz plugin

    Signed-off-by: Julien Kassar <[email protected]>
    Upstream-commit: ba5a2dc78718717443c8f5ac222661330e533f83
    Component: cli
    Julien Kassar authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    adb2595 View commit details
    Browse the repository at this point in the history
  210. Inroduce SWARM --data-path-addr flag

    This new flag will allow the configuration of an interface that
    can be used for data path traffic to be isolated from control
    plane traffic. This flag is simply percolated down to libnetwork
    and will be used by all the global scope drivers (today overlay)
    
    Negative test added for invalid flag arguments
    
    Signed-off-by: Flavio Crisciani <[email protected]>
    Upstream-commit: 137a190a79d0e08d02e4462253a6e536b9d3ab63
    Component: cli
    Flavio Crisciani authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    81790c0 View commit details
    Browse the repository at this point in the history
  211. Add bash completion for history --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 38dcfad5563ae7e696733f7ceee26d7bc3bac2d3
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    2af47ea View commit details
    Browse the repository at this point in the history
  212. Remove bash completion for run|create --init-path

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 40d3bb49852c631f170441a921d30af207d00817
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e5350e2 View commit details
    Browse the repository at this point in the history
  213. Add missing bash completion for docker attach

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 509b7f82b69d83cad59ed24c926a1d1aca2d69d1
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    06257c0 View commit details
    Browse the repository at this point in the history
  214. fix errors in config

    Signed-off-by: yuexiao-wang <[email protected]>
    Upstream-commit: 852a861b8e9c961877aff25de738323009514721
    Component: cli
    yuexiao-wang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ea8bb10 View commit details
    Browse the repository at this point in the history
  215. Add bash completion for system df --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 3e646fed805e2de054b81b20d64423e2e58d008e
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    aa463e4 View commit details
    Browse the repository at this point in the history
  216. Add bash completion for stack ls --format

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 513ea82edd3c39e794a75f23226cab0f78906c8e
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c258524 View commit details
    Browse the repository at this point in the history
  217. do not allow duration less than 1 ms in healthcheck parameters

    Signed-off-by: Dong Chen <[email protected]>
    Upstream-commit: 1fa8221743c829986894127ec5fbd1ea611329f1
    Component: cli
    dongluochen authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f54540b View commit details
    Browse the repository at this point in the history
  218. fix typo in plugins_logging.md

    Signed-off-by: Michael Friis <[email protected]>
    Upstream-commit: 542af38ce5c897f74e22c1c872f29472a89647d9
    Component: cli
    friism authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e81f095 View commit details
    Browse the repository at this point in the history
  219. Clarify --env-file usage with names without values

    Signed-off-by: Denis Defreyne <[email protected]>
    Upstream-commit: d24201d734fd0ed73e62c820e0e1bfe101c40207
    Component: cli
    denis-soundcloud authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    11fe474 View commit details
    Browse the repository at this point in the history
  220. Deprecate "asynchronous" service create and service update

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 7480fcad489daff03773c422ea41152c7accf260
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    f006cb7 View commit details
    Browse the repository at this point in the history
  221. fix some typos for plugin

    Signed-off-by: yuexiao-wang <[email protected]>
    Upstream-commit: 079bc9c7aacbcb4b111c3d513ef20fb56c342da8
    Component: cli
    yuexiao-wang authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b2bd413 View commit details
    Browse the repository at this point in the history
  222. docs/dockerd: correct authz plugin chain semantics

    Signed-off-by: David Sheets <[email protected]>
    Upstream-commit: 24b6f3cd6e6b615c5b7b83d2e1a67e4bdddcc4ec
    Component: cli
    David Sheets authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    d8cd6f9 View commit details
    Browse the repository at this point in the history
  223. Add doc for system events and events[Fix #32748]

    Signed-off-by: MichaelSpets <[email protected]>
    Upstream-commit: 824c665811f8d289919cbffab55b92ac5b99d1fb
    Component: cli
    michaelspets authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    69b02c5 View commit details
    Browse the repository at this point in the history
  224. Update attach.md

    added some clarification around why attach can appear hung to some.  issue #1456 on docs
    
    Signed-off-by: gary schaetz <[email protected]>
    
    Updated the documentation to reflect what happens when you use a fragment in
    the docker build url parameter.
    
    Signed-off-by: Gary Schaetz <[email protected]>
    
    added markup for commands
    
    Signed-off-by: Gary Schaetz <[email protected]>
    Upstream-commit: 80a7f5dec763dcdc99d0e1ce49ddeb7b8fc81b03
    Component: cli
    gschaetz authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1d760fc View commit details
    Browse the repository at this point in the history
  225. Fix list of experimental features

    - Remove duplicate entry
    - Fix anchor in link
    
    Signed-off-by: Philipp Gille <[email protected]>
    Upstream-commit: 4dcac12be058a4933a934bfc5e965eb93a2f0e4e
    Component: cli
    philippgille authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8e8c7a1 View commit details
    Browse the repository at this point in the history
  226. Add no-new-privileg flag

    The daemon config for defaulting to no-new-privileges for containers was
    added in d7fda01, but somehow we
    managed to omit the flag itself, but also documented the flag.
    This just adds the actual flag.
    
    Signed-off-by: Brian Goff <[email protected]>
    Upstream-commit: 297dc42dff71b20cdbf6c1d4a3cb6ac6417d6660
    Component: cli
    cpuguy83 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    93047d5 View commit details
    Browse the repository at this point in the history
  227. Add option to auto-configure blkdev for devmapper

    Instead of forcing users to manually configure a block device to use
    with devmapper, this gives the user the option to let the devmapper
    driver configure a device for them.
    
    Adds several new options to the devmapper storage-opts:
    
    - dm.directlvm_device="" - path to the block device to configure for
      direct-lvm
    - dm.thinp_percent=95 - sets the percentage of space to use for
      storage from the passed in block device
    - dm.thinp_metapercent=1 - sets the percentage of space to for metadata
      storage from the passed in block device
    - dm.thinp_autoextend_threshold=80 - sets the threshold for when `lvm`
      should automatically extend the thin pool as a percentage of the total
      storage space
    - dm.thinp_autoextend_percent=20 - sets the percentage to increase the
      thin pool by when an autoextend is triggered.
    
    Defaults are taken from
    [here](https://docs.docker.com/engine/userguide/storagedriver/device-mapper-driver/#/configure-direct-lvm-mode-for-production)
    
    The only option that is required is `dm.directlvm_device` for docker to
    set everything up.
    
    Changes to these settings are not currently supported and will error
    out.
    Future work could support allowing changes to these values.
    
    Signed-off-by: Brian Goff <[email protected]>
    Upstream-commit: 20bcf49fb63858c3a532c22dc667b5c1f2015cc8
    Component: cli
    cpuguy83 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    da440c7 View commit details
    Browse the repository at this point in the history
  228. Add docker build --iidfile=FILE

    This is synonymous with `docker run --cidfile=FILE` and writes the digest of
    the newly built image to the named file. This is intended to be used by build
    systems which want to avoid tagging (perhaps because they are in CI or
    otherwise want to avoid fixed names which can clash) by enabling e.g. Makefile
    constructs like:
    
        image.id: Dockerfile
        	docker build --iidfile=image.id .
    
        do-some-more-stuff: image.id
        	do-stuff-with <image.id
    
    Currently the only way to achieve this is to use `docker build -q` and capture
    the stdout, but at the expense of losing the build output.
    
    In non-silent mode (without `-q`) with API >= v1.29 the caller will now see a
    `JSONMessage` with the `Aux` field containing a `types.BuildResult` in the
    output stream for each image/layer produced during the build, with the final
    one being the end product.  Having all of the intermediate images might be
    interesting in some cases.
    
    In silent mode (with `-q`) there is no change, on success the only output will
    be the resulting image digest as it was previosuly.
    
    There was no wrapper to just output an Aux section without enclosing it in a
    Progress, so add one here.
    
    Added some tests to integration cli tests.
    
    Signed-off-by: Ian Campbell <[email protected]>
    Upstream-commit: 0808cf04cbd9939cd3770187ce270d4742893b04
    Component: cli
    Ian Campbell authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    52384a1 View commit details
    Browse the repository at this point in the history
  229. Remove cmd/docker and other directories in cli/ in accordance with th…

    …e new Moby project scope
    
    Starting with this commit, integration tests should no longer rely on
    the docker cli, they should be API tests instead. For the existing tests
    the scripts will use a frozen version of the docker cli with a
    DOCKER_API_VERSION frozen to 1.30, which should ensure that the CI remains
    green at all times.
    
    To help contributors develop and test manually with a modified docker
    cli, this commit also adds a DOCKER_CLI_PATH environment variable to the
    Makefile. This allows to set the path of a custom cli that will be
    available inside the development container and used to run the
    integration tests.
    
    Signed-off-by: Arnaud Porterie (icecrime) <[email protected]>
    Signed-off-by: Tibor Vass <[email protected]>
    Upstream-commit: 3e911ff82583e49c22def56488ddcf448adb183b
    Component: cli
    Arnaud Porterie (icecrime) authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a23aded View commit details
    Browse the repository at this point in the history
  230. fix confusing description of stdout/stdin pipe

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    Upstream-commit: 6a767c171122df673f19817f0fe904cc9eb0131d
    Component: cli
    thaJeztah authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    61c68f6 View commit details
    Browse the repository at this point in the history
  231. bash completion for stack deploy --prune

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 62d0309d24f82360e31dd33b8a967aff53ad6b94
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a9810fc View commit details
    Browse the repository at this point in the history
  232. Improve documentation on the -e flag to the 'run' cli command. The ab…

    …ility to import the current vale of an environment variable by simply naming the variable didn't seem to be documented anywhere. (see opts/env.go)
    
    Signed-off-by: John V. Martinez <[email protected]>
    Upstream-commit: a316bc3895b65a70fcca4a6c3c1ea9c152d5dbcb
    Component: cli
    jvmatl authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    a7a84c1 View commit details
    Browse the repository at this point in the history
  233. Add bash completion for --health-start-period

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 95fcee5fc6665569570d9072bde6946d3508c282
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    dcbb8fe View commit details
    Browse the repository at this point in the history
  234. Add bash completion for new devicemapper storage options

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: d8dfa04caeeb78f2233142e162241eeece930159
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    fd113bf View commit details
    Browse the repository at this point in the history
  235. Update CLI docs and add opts/config.go

    Signed-off-by: Aaron Lehmann <[email protected]>
    Upstream-commit: cf95e198c5c856673428fccad9426cfaac3b2a72
    Component: cli
    aaronlehmann authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c5eee88 View commit details
    Browse the repository at this point in the history
  236. Update bash completion for log driver options

    Signed-off-by: Harald Albers <[email protected]>
    Upstream-commit: 4c0d6698d11adf28beff7bcc5fbbec123f4aa6bc
    Component: cli
    albers authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    b435b27 View commit details
    Browse the repository at this point in the history
  237. Add support for metrics plugins

    Allows for a plugin type that can be used to scrape metrics.
    This is useful because metrics are not neccessarily at a standard
    location... `--metrics-addr` must be set, and must currently be a TCP
    socket.
    Even if metrics are done via a unix socket, there's no guarentee where
    the socket may be located on the system, making bind-mounting such a
    socket into a container difficult (and racey, failure-prone on daemon
    restart).
    
    Metrics plugins side-step this issue by always listening on a unix
    socket and then bind-mounting that into a known path in the plugin
    container.
    
    Note there has been similar work in the past (and ultimately punted at
    the time) for consistent access to the Docker API from within a
    container.
    
    Why not add metrics to the Docker API and just provide a plugin with
    access to the Docker API? Certainly this can be useful, but gives a lot
    of control/access to a plugin that may only need the metrics. We can
    look at supporting API plugins separately for this reason.
    
    Signed-off-by: Brian Goff <[email protected]>
    Upstream-commit: d8e04f68d3cba0a65f6b624db0dff40db9f6ca15
    Component: cli
    cpuguy83 authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c564ad3 View commit details
    Browse the repository at this point in the history
  238. Document arg before from

    Signed-off-by: Daniel Nephin <[email protected]>
    Upstream-commit: c6e78b9c5f915bc0d717cc4949e32fcfbbe85f55
    Component: cli
    dnephin authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    57eca1a View commit details
    Browse the repository at this point in the history
  239. Allow checking out any ref in gitutils

    Also changes so that shallow fetch is performed
    even when a specific ref is specified.
    
    Signed-off-by: Tonis Tiigi <[email protected]>
    Upstream-commit: 48ba755c3bd7fd99d060f793d8ec7a811a0a38c5
    Component: cli
    tonistiigi authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    0e345f3 View commit details
    Browse the repository at this point in the history
  240. docs: add docs for build —target

    Signed-off-by: Tonis Tiigi <[email protected]>
    Upstream-commit: d50472f52bb5b8d3e0a63f236b6714c26e7a1edf
    Component: cli
    tonistiigi authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    e28d94d View commit details
    Browse the repository at this point in the history
  241. docs: add missing cache-from man docs

    Signed-off-by: Tonis Tiigi <[email protected]>
    Upstream-commit: bc5fca913b673d2caf04316806e000da9493a761
    Component: cli
    tonistiigi authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    079ddc4 View commit details
    Browse the repository at this point in the history
  242. Update the CLI docs to display whether a root rotation is in progress

    when viewing system info, and TLS info when displaying node info.
    
    Signed-off-by: Ying Li <[email protected]>
    Upstream-commit: 42ec86ae9b070b0dacadee63c7bbfcf8cae3eea3
    Component: cli
    cyli authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    1d4d33c View commit details
    Browse the repository at this point in the history
  243. Add daemon option to push foreign layers

    The --allow-nondistributable-artifacts daemon option specifies
    registries to which foreign layers should be pushed.  (By default,
    foreign layers are not pushed to registries.)
    
    Additionally, to make this option effective, foreign layers are now
    pulled from the registry if possible, falling back to the URLs in the
    image manifest otherwise.
    
    This option is useful when pushing images containing foreign layers to a
    registry on an air-gapped network so hosts on that network can pull the
    images without connecting to another server.
    
    Signed-off-by: Noah Treuhaft <[email protected]>
    Upstream-commit: 981055449460b36ba5606fd93be0e1e181b1caec
    Component: cli
    nwt authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    8fabd69 View commit details
    Browse the repository at this point in the history
  244. Document the swarm root CA rotation CLI command.

    Signed-off-by: Ying Li <[email protected]>
    Upstream-commit: e1cd83f28a3bc3080ba834553aee50d03a3bb49d
    Component: cli
    cyli authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    eee5a1c View commit details
    Browse the repository at this point in the history
  245. Update ContainerWait API

    This patch adds the untilRemoved option to the ContainerWait API which
    allows the client to wait until the container is not only exited but
    also removed.
    
    This patch also adds some more CLI integration tests for waiting for a
    created container and waiting with the new --until-removed flag.
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Handle detach sequence in CLI
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Update Container Wait Conditions
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Apply container wait changes to API 1.30
    
    The set of changes to the containerWait API missed the cut for the
    Docker 17.05 release (API version 1.29). This patch bumps the version
    checks to use 1.30 instead.
    
    This patch also makes a minor update to a testfile which was added to
    the builder/dockerfile package.
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Remove wait changes from CLI
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Address minor nits on wait changes
    
    - Changed the name of the tty Proxy wrapper to `escapeProxy`
    - Removed the unnecessary Error() method on container.State
    - Fixes a typo in comment (repeated word)
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Use router.WithCancel in the containerWait handler
    
    This handler previously added this functionality manually but now uses
    the existing wrapper which does it for us.
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Add WaitCondition constants to api/types/container
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Address more ContainerWait review comments
    
    - Update ContainerWait backend interface to not return pointer values
      for container.StateStatus type.
    - Updated container state's Wait() method comments to clarify that a
      context MUST be used for cancelling the request, setting timeouts,
      and to avoid goroutine leaks.
    - Removed unnecessary buffering when making channels in the client's
      ContainerWait methods.
    - Renamed result and error channels in client's ContainerWait methods
      to clarify that only a single result or error value would be sent
      on the channel.
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Move container.WaitCondition type to separate file
    
    ... to avoid conflict with swagger-generated code for API response
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    
    Address more ContainerWait review comments
    
    Docker-DCO-1.1-Signed-off-by: Josh Hawn <[email protected]> (github: jlhawn)
    Upstream-commit: a49573e5fb7936975e4f4e6f074ab9495ac6dd33
    Component: cli
    Josh Hawn authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    eeb4b89 View commit details
    Browse the repository at this point in the history
  246. Docs and manual changes

    - for service create on node-local networks
    
    Signed-off-by: Alessandro Boch <[email protected]>
    Upstream-commit: cccd6379b7f97feb09e84aa77b2c1c30d023e277
    Component: cli
    aboch authored and Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    5cb40a7 View commit details
    Browse the repository at this point in the history
  247. Import completion scripts, docs, and man pages from docker/docker

    Upstream-commit: ca8303e325756977fc96d61910d7b979341b4a41
    Component: cli
    Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    c00aa61 View commit details
    Browse the repository at this point in the history
  248. Revert docs/yaml removal

    This reverts commit 3e911ff82583e49c22def56488ddcf448adb183b.
    Upstream-commit: d2cb97e76d581f4a9c2fa9df9649a7d59d9474e3
    Component: cli
    Tibor Vass committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    7ff65f2 View commit details
    Browse the repository at this point in the history
  249. Add missing dependencies to vendor, and fix generation imports

    Signed-off-by: Daniel Nephin <[email protected]>
    Upstream-commit: 875daf0130e01528f5e681b5f68dcfe8bb7e2681
    Component: cli
    dnephin committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ffaa61d View commit details
    Browse the repository at this point in the history
  250. Remove old manpage generation dockerfiles and glide config.

    Signed-off-by: Daniel Nephin <[email protected]>
    Upstream-commit: d2976d599f4c3027843e5c5f589c5334ef28df17
    Component: cli
    dnephin committed Jun 2, 2017
    Configuration menu
    Copy the full SHA
    ae4b9d3 View commit details
    Browse the repository at this point in the history