forked from fabric8io/docker-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildOptions.java
More file actions
104 lines (87 loc) · 2.8 KB
/
BuildOptions.java
File metadata and controls
104 lines (87 loc) · 2.8 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package io.fabric8.maven.docker.access;/*
*
* Copyright 2015-2016 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import io.fabric8.maven.docker.util.JsonFactory;
/**
* https://docs.docker.com/engine/api/v1.41/#operation/ImageBuild
* @author roland
* @since 03/01/17
*/
public class BuildOptions {
private final Map<String, String> options;
public BuildOptions() {
this(new HashMap<>());
}
public BuildOptions(Map<String, String> options) {
this.options = options != null ? new HashMap<>(options) : new HashMap<>();
}
public BuildOptions addOption(String key, String value) {
options.put(key,value);
return this;
}
public BuildOptions dockerfile(String name) {
if (name != null) {
options.put("dockerfile", name);
}
return this;
}
public BuildOptions forceRemove(boolean forceRm) {
if (forceRm) {
options.put("forcerm", "1");
}
return this;
}
public BuildOptions noCache(boolean noCache) {
options.put("nocache", noCache ? "1" : "0");
return this;
}
public BuildOptions squash(boolean squash) {
options.put("squash", squash ? "1" : "0");
return this;
}
public BuildOptions cacheFrom(List<String> cacheFrom) {
if (cacheFrom == null || cacheFrom.isEmpty()) {
options.remove("cachefrom");
} else {
options.put("cachefrom", JsonFactory.newJsonArray(cacheFrom).toString());
}
return this;
}
public BuildOptions buildArgs(Map<String, String> buildArgs) {
if (buildArgs != null && buildArgs.size() > 0) {
options.put("buildargs", JsonFactory.newJsonObject(buildArgs).toString());
}
return this;
}
public BuildOptions network(String network) {
if (network != null && !network.isEmpty()) {
options.put("networkmode", network);
}
return this;
}
public BuildOptions target(String target) {
if (target != null && !target.isEmpty()) {
options.put("target", target);
}
return this;
}
public Map<String, String> getOptions() {
return options;
}
}