We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 695e90d + 80869cf commit 09936efCopy full SHA for 09936ef
lib/create.js
@@ -148,6 +148,11 @@ module.exports = {
148
if(cmd.indexOf("constraint") >= 0){
149
arr.push("--constraint "+app.constraint);
150
}
151
+ if(cmd.indexOf("constraints") >= 0){
152
+ app.constraints.forEach((v)=>{
153
+ arr.push("--constraint "+v);
154
+ });
155
+ }
156
if(cmd.indexOf("networks") >= 0){
157
app.networks.forEach(function(v){
158
arr.push("--network "+v);
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "orcinus",
3
- "version": "0.4.4",
+ "version": "0.5.0",
4
"description": "Container orchestration tools",
5
"main": "cli.js",
6
"scripts": {
0 commit comments