forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateContainerCmdExec.java
More file actions
37 lines (26 loc) · 1.3 KB
/
Copy pathCreateContainerCmdExec.java
File metadata and controls
37 lines (26 loc) · 1.3 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.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.github.dockerjava.api.command.CreateContainerCmd;
import com.github.dockerjava.api.command.CreateContainerResponse;
import com.github.dockerjava.core.DockerClientConfig;
public class CreateContainerCmdExec extends AbstrSyncDockerCmdExec<CreateContainerCmd, CreateContainerResponse>
implements CreateContainerCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(CreateContainerCmdExec.class);
public CreateContainerCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected CreateContainerResponse execute(CreateContainerCmd command) {
WebTarget webResource = getBaseResource().path("/containers/create");
if (command.getName() != null) {
webResource = webResource.queryParam("name", command.getName());
}
LOGGER.trace("POST: {} ", webResource);
return webResource.request().accept(MediaType.APPLICATION_JSON)
.post(entity(command, MediaType.APPLICATION_JSON), CreateContainerResponse.class);
}
}