Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add manifest command #138

Merged
merged 4 commits into from
Jan 18, 2018
Merged

Add manifest command #138

merged 4 commits into from
Jan 18, 2018

Commits on Jan 8, 2018

  1. vendor updates for manifest cmd

    Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
    clnperez committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    17886d7 View commit details
    Browse the repository at this point in the history
  2. add manifest command

    Enable inspection (aka "shallow pull") of images' manifest info, and
    also the creation of manifest lists (aka "fat manifests").
    
    The workflow for creating a manifest list will be:
    
    `docker manifest create new-list-ref-name image-ref [image-ref...]`
    `docker manifest annotate new-list-ref-name image-ref --os linux --arch
    arm`
    `docker manifest push new-list-ref-name`
    
    The annotate step is optional. Most architectures are fine by default.
    
    There is also a `manifest inspect` command to allow for a "shallow pull"
    of an image's manifest: `docker manifest inspect
    manifest-or-manifest_list`.
    
    To be more in line with the existing external manifest tool, there is
    also a `-v` option for inspect that will show information depending on
    what the reference maps to (list or single manifest).
    
    Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
    Signed-off-by: Daniel Nephin <dnephin@docker.com>
    clnperez committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    02719bd View commit details
    Browse the repository at this point in the history
  3. manifest tests

    create, annotate, & push
    
    Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
    Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
    clnperez committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    db6d872 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2018

  1. add manifest cmd cli doc

    Signed-off-by: Christy Norman Perez <christy@linux.vnet.ibm.com>
    clnperez committed Jan 18, 2018
    Configuration menu
    Copy the full SHA
    6c6ce22 View commit details
    Browse the repository at this point in the history