update_parser=subparsers.add_parser('update',help='update a container from an image',description='Update a container from an image and start it.')
update_parser=subparsers.add_parser('update',help='update a container from an image',description='Update a container from an image and start it.')
update_parser.add_argument('name',help='name of the container')
update_parser.add_argument('name',help='name of the container')
update_parser.add_argument('--no-pull',default=False,action='store_true',help='do not pull a new image')
update_parser.add_argument('--pull',action=argparse.BooleanOptionalAction,help='pull a new image (use --pull or --no-pull to override behavior specified by container config) ')