This repository was archived by the owner on Feb 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtask.template.html
More file actions
127 lines (124 loc) · 6 KB
/
Copy pathtask.template.html
File metadata and controls
127 lines (124 loc) · 6 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<style>
.asterisk {
color : red;
}
.checkbox_row {
display: flex;
}
.checkbox_label {
line-height: 1 !important;
margin-left: 5px !important;
}
</style>
<div class="form_item_block">
<h2>Docker Compose</h2>
<div class="form_item_block">
<label>Logical name of dockerhost<span class="asterisk">*</span></label>
<input type="text" ng-model="vmname" ng-required="true">
</div>
<div class="form_item_block">
<label>Service(s) to *explicitly* build</label>
<input type="text" ng-model="COMPOSE_BUILD" ng-required="false">
</div>
<!--
<div class="form_item_block checkbox_row">
<div class="checkbox_label_wrapper">
<input name="pipeline[lock]" type="hidden" value="0"/>
<input id="pipeline_lock" name="pipeline[lock]"
type="checkbox" value="1"/>
<label for="pipeline_lock">Automatic pipeline locking
</label>
</div>
<div class="contextual_help has_go_tip_right"
title="If checked, only a single instance of the pipeline can be run at a time and the lock will release only if the entire pipeline completes successfully. This is particularly useful in deployment scenarios.">
</div>
</div>
-->
<div class="form_item_block">
<div class="checkbox_row">
<input id="FORCE_BUILD_ONLY2" type="checkbox" ng-model="FORCE_BUILD_ONLY2"
ng-init="FORCE_BUILD_ONLY2 = FORCE_BUILD_ONLY"
ng-change="FORCE_BUILD_ONLY = FORCE_BUILD_ONLY2" ng-true-value="true" ng-false-value="false"/>
<input id="FORCE_BUILD_ONLY" type="hidden" ng-model="FORCE_BUILD_ONLY" value="{{FORCE_BUILD_ONLY}}"/>
<label class="checkbox_label">Do NOT start any services.</label>
</div>
</div>
<div class="form_item_block">
<div class="checkbox_row">
<input id="FORCE_BUILD2" type="checkbox" ng-model="FORCE_BUILD2" ng-init="FORCE_BUILD2 = FORCE_BUILD"
ng-change="FORCE_BUILD = FORCE_BUILD2" ng-true-value="true" ng-false-value="false">
<input id="FORCE_BUILD" type="hidden" ng-model="FORCE_BUILD" value="{{FORCE_BUILD}}">
<label class="checkbox_label">Force a 'build', even if *local* resources/files are NOT modified.</label>
</div>
</div>
<div class="form_item_block">
<div class="checkbox_row">
<input id="COMPOSE_NO_CACHE2" type="checkbox" ng-model="COMPOSE_NO_CACHE2"
ng-init="COMPOSE_NO_CACHE2 = COMPOSE_NO_CACHE"
ng-change="COMPOSE_NO_CACHE = COMPOSE_NO_CACHE2" ng-true-value="true" ng-false-value="false">
<input id="COMPOSE_NO_CACHE" type="hidden" ng-model="COMPOSE_NO_CACHE" value="{{COMPOSE_NO_CACHE}}">
<label class="checkbox_label">Force a 'build' WITHOUT using already cached layers.</label>
</div>
</div>
<div class="form_item_block">
<div class="checkbox_row">
<input id="COMPOSE_REMOVE_VOLUMES2" type="checkbox" ng-model="COMPOSE_REMOVE_VOLUMES2"
ng-init="COMPOSE_REMOVE_VOLUMES2 = COMPOSE_REMOVE_VOLUMES"
ng-change="COMPOSE_REMOVE_VOLUMES = COMPOSE_REMOVE_VOLUMES2" ng-true-value="true"
ng-false-value="false">
<input id="COMPOSE_REMOVE_VOLUMES" type="hidden" ng-model="COMPOSE_REMOVE_VOLUMES"
value="{{COMPOSE_REMOVE_VOLUMES}}">
<label class="checkbox_label">Remove volumes associated with containers.</label>
</div>
</div>
<div class="form_item_block">
<div class="checkbox_row">
<input id="COMPOSE_DOWN2" type="checkbox" ng-model="COMPOSE_DOWN2"
ng-init="COMPOSE_DOWN2 = COMPOSE_DOWN"
ng-change="COMPOSE_DOWN = COMPOSE_DOWN2" ng-true-value="true"
ng-false-value="false">
<input id="COMPOSE_DOWN" type="hidden" ng-model="COMPOSE_DOWN"
value="{{COMPOSE_DOWN}}">
<label class="checkbox_label">Issue a "compose down" command</label>
</div>
</div>
<div class="form_item_block">
<div class="checkbox_row">
<input id="FORCE_PULL2" type="checkbox" ng-model="FORCE_PULL2" ng-init="FORCE_PULL2 = FORCE_PULL"
ng-change="FORCE_PULL = FORCE_PULL2" ng-true-value="true" ng-false-value="false">
<input id="FORCE_PULL" type="hidden" ng-model="FORCE_PULL" value="{{FORCE_PULL}}">
<label class="checkbox_label">Update images used in the docker-compose file.</label>
</div>
</div>
<div class="form_item_block">
<label>Service(s) to start</label>
<input type="text" ng-model="service" ng-required="false">
</input>
</div>
<div class="form_item_block">
<label>Name of *.yml file (if empty, docker-compose.yml)</label>
<input type="text" ng-model="COMPOSE_FILE" ng-required="false">
</input>
</div>
<div class="form_item_block">
<label>Task specific environment variables (name=value[;name=value])</label>
<input type="text" ng-model="ENV_VARS" ng-required="false">
</input>
</div>
<div class="form_item_block">
<div class="checkbox_row">
<input id="FORCE_RECREATE2" type="checkbox" ng-model="FORCE_RECREATE2"
ng-init="FORCE_RECREATE2 = FORCE_RECREATE"
ng-change="FORCE_RECREATE = FORCE_RECREATE2" ng-true-value="true" ng-false-value="false">
<input id="FORCE_RECREATE" type="hidden" ng-model="FORCE_RECREATE" value="{{FORCE_RECREATE}}">
<label class="checkbox_label">Force recreation of containers (e.g. For restarting init)</label>
</div>
</div>
<!--
<div class="form_item_block">
<label>Create an deployment bundle (*.dab)</label>
<input type="text" ng-model="BUNDLE_OUTPUT_PATH" ng-required="false">
</input>
</div>
-->
</div>