Interface DockerApi


  • @Path("/api/docker")
    public interface DockerApi
    • Method Detail

      • promote

        @Named("docker:promote")
        @Consumes("text/plain")
        @Path("/{repoKey}/v2/promote")
        @POST
        boolean promote​(@PathParam("repoKey")
                        String repoKey,
                        PromoteImage promote)
      • repositories

        @Named("docker:list-repositories")
        @Consumes("application/json")
        @Path("/{repoKey}/_catalog")
        @GET
        List<String> repositories​(@PathParam("repoKey")
                                  String repoKey)