> + @Named("image:delete")
> + @DELETE
> + @Path("/images/{name}")
> + @Consumes(MediaType.APPLICATION_JSON)
> + InputStream deleteImage(@PathParam("name") String name);
> +
> +
> + /**
> + * Build an image from Dockerfile via stdin
> + */
> + @Named("image:build")
> + @POST
> + @Path("/build")
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Headers(keys = "Content-Type", values = "application/tar")
> + InputStream build(@QueryParam("t") String tag, Payload inputStream);
Should this method also support the `quiet` and `nocache` parameters?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10838881