forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateServiceCmdExec.java
More file actions
37 lines (31 loc) · 1.28 KB
/
Copy pathUpdateServiceCmdExec.java
File metadata and controls
37 lines (31 loc) · 1.28 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
31
32
33
34
35
36
37
package com.github.dockerjava.core.exec;
import com.github.dockerjava.api.command.UpdateServiceCmd;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.MediaType;
import com.github.dockerjava.core.WebTarget;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
/**
* Update service settings.
*/
public class UpdateServiceCmdExec extends AbstrSyncDockerCmdExec<UpdateServiceCmd, Void>
implements UpdateServiceCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(UpdateServiceCmdExec.class);
public UpdateServiceCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected Void execute(UpdateServiceCmd command) {
WebTarget webResource = getBaseResource().path("/services/{id}/update")
.resolveTemplate("id", command.getServiceId())
.queryParam("version", command.getVersion());
LOGGER.trace("POST: {}", webResource);
try {
webResource.request().accept(MediaType.APPLICATION_JSON).post(command.getServiceSpec()).close();
} catch (IOException e) {
throw new RuntimeException(e);
}
return null;
}
}