forked from yeasy/dockerfileGen
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.js
More file actions
41 lines (37 loc) · 1.01 KB
/
app.js
File metadata and controls
41 lines (37 loc) · 1.01 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
/**
* Created by waitfish on 15/6/14.
*/
var Dockerfilegen = angular
.module('Dockerfilegen', [
'restangular'
]);
Dockerfilegen.controller('mainCtrl', function ($scope) {
$scope.dockerparam = {
baseimage: 'ubuntu 14.04',
maintainer: 'maintainer',
expose: '',
cmd: ''
}
$scope.gen = function (data) {
$scope.result =
"# Dockerfile generated\n#\n# VERSION 0.1\n\n"
+ "FROM: " + data.baseimage + "\n"
+ "MAINTAINER:" + data.maintainer + "\n"
+ "EXPOSE:" + data.expose + "\n"
+ "CMD: " + data.cmd
}
$scope.reset = function () {
$scope.dockerparam = {
baseimage: 'ubuntu 14.04',
maintainer: 'maintainer',
expose: '',
cmd: ''
}
$scope.result =
"# Dockerfile generated\n#\n# VERSION 0.1\n\n"
+ "FROM: " + "\n"
+ "MAINTAINER:" + "\n"
+ "EXPOSE:" + "\n"
+ "CMD: "
}
})