forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins.json
38 lines (38 loc) · 884 Bytes
/
jenkins.json
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
{
"JenkinsCI": {
"description": "Leading open source automation server",
"ui": {
"slug": ""
},
"website": "https://jenkins-ci.org/",
"version": "1.0",
"containers": {
"jenkins": {
"image": "jenkins",
"launch_order": 1,
"uid": -1,
"ports": {
"8080": {
"description": "Jenkins UI port. You may need to open it(protocol: tcp) on your firewall.",
"host_default": 8080,
"label": "Server port",
"protocol": "tcp",
"ui": true
},
"50000": {
"description": "Slave agent port.",
"host_default": 50000,
"label": "Agent port",
"protocol": "tcp"
}
},
"volumes": {
"/var/jenkins_home": {
"description": "Choose a Share for Jenkins home. Jenkins will run as the same user that owns this Share. It is recommended to set the owner to a non-root user",
"label": "Jenkins Home"
}
}
}
}
}
}