All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dockerjava.jaxrs.CommitCmdExec Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.jaxrs;

import static javax.ws.rs.client.Entity.entity;

import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.fasterxml.jackson.databind.node.ObjectNode;
import com.github.dockerjava.api.command.CommitCmd;

public class CommitCmdExec extends AbstrDockerCmdExec implements CommitCmd.Exec {
	
	private static final Logger LOGGER = LoggerFactory
			.getLogger(CommitCmdExec.class);
	
	public CommitCmdExec(WebTarget baseResource) {
		super(baseResource);
	}

	@Override
	protected String execute(CommitCmd command) {
		WebTarget webResource = getBaseResource().path("/commit")
                .queryParam("container", command.getContainerId())
                .queryParam("repo", command.getRepository())
                .queryParam("tag", command.getTag())
                .queryParam("m", command.getMessage())
                .queryParam("author", command.getAuthor())
                .queryParam("pause",  command.hasPauseEnabled() ? "1" : "0");
		
		LOGGER.trace("POST: {}", webResource);
		ObjectNode objectNode = webResource.request().accept("application/vnd.docker.raw-stream").post(entity(command, MediaType.APPLICATION_JSON), ObjectNode.class);
        return objectNode.get("Id").asText();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy