forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTagImageCmdExec.java
More file actions
30 lines (21 loc) · 1.04 KB
/
Copy pathTagImageCmdExec.java
File metadata and controls
30 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.github.dockerjava.netty.exec;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.dockerjava.api.command.TagImageCmd;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.netty.WebTarget;
public class TagImageCmdExec extends AbstrSyncDockerCmdExec<TagImageCmd, Void> implements TagImageCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(TagImageCmdExec.class);
public TagImageCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected Void execute(TagImageCmd command) {
WebTarget webTarget = getBaseResource().path("/images/" + command.getImageId() + "/tag")
.queryParam("repo", command.getRepository()).queryParam("tag", command.getTag());
webTarget = booleanQueryParam(webTarget, "force", command.hasForceEnabled());
LOGGER.trace("POST: {}", webTarget);
webTarget.request().post(null);
return null;
}
}