docker-runner 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +135 -0
- data/Rakefile +2 -0
- data/bin/docker-runner +12 -0
- data/bin/include/docker-runner.sh +40 -0
- data/bin/include/functions.sh +365 -0
- data/docker-runner.gemspec +26 -0
- data/lib/docker/runner/version.rb +5 -0
- data/lib/docker/runner.rb +8 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c922e4be88775142c1940bf163272b4323abb756
|
4
|
+
data.tar.gz: a18982c3960b9466baa51df30b6555e9ae3fa433
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f92c3643aeece1712cc6eba42e37cead1c749ecfb773e86704a6ea66293e7142c655a6244d3e7134936134136aae95742fe8fef42d8dba81a57676d12c431cba
|
7
|
+
data.tar.gz: 0a6488b68daa8eb3ec4a1288e36a405ff81aea296c84a518c54bdafd42c3f808a9ddf2303ff362a1b67555e1c9f297deaa409c5cd633ce11ebe135b0fbe36c8b
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at wangchangming@caishuo.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 王长明
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,135 @@
|
|
1
|
+
# Docker::Runner
|
2
|
+
|
3
|
+
A Rails Like Docker Runner Cli
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
$ gem install docker-runner
|
8
|
+
$ docker-runner setup
|
9
|
+
|
10
|
+
## Commands List
|
11
|
+
|
12
|
+
1. [docker-runner setup](#commands-list)
|
13
|
+
2. [docker-runner new [project]](#commands-list)
|
14
|
+
3. [docker-runner config](#commands-list)
|
15
|
+
4. [docker-runner build](#commands-list)
|
16
|
+
5. [docker-runner push](#commands-list)
|
17
|
+
6. [docker-runner login](#commands-list)
|
18
|
+
7. [docker-runner logout](#commands-list)
|
19
|
+
8. [docker-runner console](#commands-list)
|
20
|
+
9. [docker-runner update](#commands-list)
|
21
|
+
10. [docker-runner version](#commands-list)
|
22
|
+
|
23
|
+
## 使用说明
|
24
|
+
|
25
|
+
> [说明1: 如何制作自己的image](#说明1-如何制作自己的image)
|
26
|
+
|
27
|
+
> [说明2: Docker私有库](#说明2-docker私有库)
|
28
|
+
|
29
|
+
> [说明3: 如何快速启动Docker容器](#说明3-如何快速启动docker容器)
|
30
|
+
|
31
|
+
> [说明4: 如果远程模版更新了, 如何更新已有项目](#说明4-如果远程模版更新了-如何更新已有项目)
|
32
|
+
|
33
|
+
> [说明5: 官方镜像加速](#说明5-官方镜像加速)
|
34
|
+
|
35
|
+
### 说明1: 如何制作自己的image
|
36
|
+
|
37
|
+
1. 新建一个镜像, 进行项目初始化, 该命令会替你执行:
|
38
|
+
|
39
|
+
~~~
|
40
|
+
docker-runner new project_name
|
41
|
+
~~~
|
42
|
+
|
43
|
+
> 该命令会自动执行:
|
44
|
+
> * 设置 `username`, `image`, `version` 和 `镜像简介`等环境变量
|
45
|
+
> * 设置你的Dockerfile
|
46
|
+
> * 重置README.md
|
47
|
+
|
48
|
+
2. 开始开发
|
49
|
+
1. [可选] rootfs目录会copy到镜像的root目录, 如有需要请添加必要的文件
|
50
|
+
2. [可选] rootfs/init 为 `ENTRYPOINT`, 如有需要, 请将容器每次启动的命令写在里面
|
51
|
+
3. 做你想做的
|
52
|
+
3. git commit & git push
|
53
|
+
4. 在本机进行编译, 执行 `docker-runner build`
|
54
|
+
5. 编译成功后, 如需进行本地测试, 可以执行 `docker-runner console`
|
55
|
+
6. 将镜像push到私有库
|
56
|
+
|
57
|
+
docker-runner push
|
58
|
+
|
59
|
+
|
60
|
+
### 说明2: Docker私有库
|
61
|
+
|
62
|
+
1. 访问https://portus.caishuo.com/ 注册一个帐号, 统一使用caishuo邮箱, 用户名和邮箱前缀保持一致
|
63
|
+
2. 注册成功后, 则默认拥有私有库(`hub.caishuo.com`)的权限:
|
64
|
+
- 公开库: hub.caishuo.com/:repo 比如 hub.caishuo.com/ruby
|
65
|
+
- 私有库: hub.caishuo.com/:username/:repo 比如: hub.caishuo.com/wangchangming/ruby
|
66
|
+
3. 在本地, 登录上你的私有库帐号, 否则没有push权限
|
67
|
+
|
68
|
+
```
|
69
|
+
docker login hub.caishuo.com
|
70
|
+
```
|
71
|
+
|
72
|
+
### 说明3: 如何快速启动Docker容器
|
73
|
+
|
74
|
+
1. 添加启动命令的别名
|
75
|
+
|
76
|
+
echo 'alias dr="docker run -i -t --rm --name ${NAME:-tmp}"' >> ~/.bash_aliases
|
77
|
+
|
78
|
+
2. 将以下代码添加到 `~/.bash_profile`
|
79
|
+
|
80
|
+
if [ "${BASH-no}" != "no" ]; then
|
81
|
+
[ -r ~/.bash_aliases ] && . ~/.bash_aliases
|
82
|
+
fi
|
83
|
+
|
84
|
+
3. 执行示例:
|
85
|
+
|
86
|
+
```
|
87
|
+
dr hub.caishuo.com/ruby /bin/sh # 启动一个name为tmp的容器
|
88
|
+
dr --name tmp2 hub.caishuo.com/ruby /bin/sh # 启动一个name为tmp2的容器
|
89
|
+
```
|
90
|
+
|
91
|
+
### 说明4: 如果远程模版更新了, 如何更新已有项目
|
92
|
+
|
93
|
+
1. 切换当前工作路径至你的本地项目
|
94
|
+
2. 执行更新模版
|
95
|
+
|
96
|
+
```
|
97
|
+
$ docker-runner update
|
98
|
+
```
|
99
|
+
|
100
|
+
3. 解决冲突后再次commit, 本地的分支便跟上游仓库保持同步了,并且没有丢失你本地的修改。
|
101
|
+
|
102
|
+
### 说明5: 官方镜像加速
|
103
|
+
|
104
|
+
1. Mac
|
105
|
+
|
106
|
+
```
|
107
|
+
docker-machine ssh default
|
108
|
+
sudo sed -i "s|EXTRA_ARGS='|EXTRA_ARGS='—registry-mirror=https://g7j06i2j.mirror.aliyuncs.com |g" /var/lib/boot2docker/profile
|
109
|
+
exit
|
110
|
+
docker-machine restart default
|
111
|
+
```
|
112
|
+
|
113
|
+
2. Ubuntu
|
114
|
+
|
115
|
+
```
|
116
|
+
echo "DOCKER_OPTS=\"--registry-mirror=https://g7j06i2j.mirror.aliyuncs.com\"" | sudo tee -a /etc/default/docker
|
117
|
+
sudo service docker restart
|
118
|
+
```
|
119
|
+
|
120
|
+
|
121
|
+
## Development
|
122
|
+
|
123
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
124
|
+
|
125
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
126
|
+
|
127
|
+
## Contributing
|
128
|
+
|
129
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/docker-runner. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
130
|
+
|
131
|
+
|
132
|
+
## License
|
133
|
+
|
134
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
135
|
+
|
data/Rakefile
ADDED
data/bin/docker-runner
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
$:.unshift File.expand_path(File.join(File.dirname(__FILE__), %w[.. lib]))
|
3
|
+
require 'docker/runner'
|
4
|
+
|
5
|
+
bin_dir = File.expand_path(File.dirname(__FILE__))
|
6
|
+
shell_script_path = File.join(bin_dir, 'include', 'docker-runner.sh')
|
7
|
+
|
8
|
+
if ARGV[0] == 'version'
|
9
|
+
puts Docker::Runner::ABOUT
|
10
|
+
else
|
11
|
+
puts `#{shell_script_path} #{ARGV * ' '}`
|
12
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
source "${0%/*}/functions.sh"
|
3
|
+
|
4
|
+
case "$1" in
|
5
|
+
new)
|
6
|
+
image=$2
|
7
|
+
do_new_project
|
8
|
+
;;
|
9
|
+
setup)
|
10
|
+
do_setup
|
11
|
+
;;
|
12
|
+
config)
|
13
|
+
do_config
|
14
|
+
;;
|
15
|
+
build)
|
16
|
+
docker_opts=${@%build}
|
17
|
+
do_build
|
18
|
+
;;
|
19
|
+
push)
|
20
|
+
docker_opts=${@%push}
|
21
|
+
do_push
|
22
|
+
;;
|
23
|
+
login)
|
24
|
+
do_login
|
25
|
+
;;
|
26
|
+
logout)
|
27
|
+
do_logout
|
28
|
+
;;
|
29
|
+
console)
|
30
|
+
docker_opts=${@%shell}
|
31
|
+
do_console
|
32
|
+
;;
|
33
|
+
update)
|
34
|
+
do_update
|
35
|
+
;;
|
36
|
+
*)
|
37
|
+
echo "Usage: $NAME {new|setup|config|build|push|login|logout|console|update|version}" >&2
|
38
|
+
exit 3
|
39
|
+
;;
|
40
|
+
esac
|
@@ -0,0 +1,365 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
[ -r "$HOME/.docker-runner" ] && source "$HOME/.docker-runner"
|
3
|
+
[ -r ".docker-runner" ] && source ".docker-runner"
|
4
|
+
|
5
|
+
#------------------------------------------------------------------------------
|
6
|
+
# 1. 环境变量:
|
7
|
+
#------------------------------------------------------------------------------
|
8
|
+
|
9
|
+
TEMPLATE_URL='ssh://git@gitlab.caishuo.com:10022/docker/docker-template.git'
|
10
|
+
|
11
|
+
# 环境变量输入
|
12
|
+
ask_env(){
|
13
|
+
ask_project_env
|
14
|
+
ask_global_env
|
15
|
+
echo ''
|
16
|
+
}
|
17
|
+
|
18
|
+
ask_global_env() {
|
19
|
+
if ( [ "$gitlab_token" = '' ] ); then
|
20
|
+
for (( ; ; )); do
|
21
|
+
read -p "Gitlab Token:(必填): " gitlab_token
|
22
|
+
if ( [ "$gitlab_token" != '' ] ); then
|
23
|
+
break
|
24
|
+
fi
|
25
|
+
done
|
26
|
+
else
|
27
|
+
echo "Gitlab Token(必填): $gitlab_token"
|
28
|
+
fi
|
29
|
+
}
|
30
|
+
|
31
|
+
ask_project_env() {
|
32
|
+
if ( [ "$image" = '' ] ); then
|
33
|
+
for (( ; ; )); do
|
34
|
+
read -p "镜像名称(${image:-必填}): " image
|
35
|
+
if ( [ "$image" != '' ] ); then
|
36
|
+
break
|
37
|
+
fi
|
38
|
+
done
|
39
|
+
else
|
40
|
+
echo "镜像名称(必填): $image"
|
41
|
+
fi
|
42
|
+
|
43
|
+
read -p "用户名($(default_username)): " username
|
44
|
+
read -p "镜像简介(生成README): " intro
|
45
|
+
}
|
46
|
+
|
47
|
+
save_global_env() {
|
48
|
+
echo -e "\
|
49
|
+
gitlab_api_endpoint=$(gitlab_api_endpoint)\n\
|
50
|
+
gitlab_token=${gitlab_token}\n\
|
51
|
+
docker_host=${docker_host}\n\
|
52
|
+
email=${email}\
|
53
|
+
" > ~/.docker-runner
|
54
|
+
}
|
55
|
+
|
56
|
+
save_project_env() {
|
57
|
+
echo -e "\
|
58
|
+
username=${username}\n\
|
59
|
+
image=${image}\n\
|
60
|
+
version=${version}\
|
61
|
+
" > .docker-runner
|
62
|
+
|
63
|
+
echo -e "\n[本地.docker-runner文件创建成功]"
|
64
|
+
cat .docker-runner
|
65
|
+
}
|
66
|
+
|
67
|
+
print_env() {
|
68
|
+
print_global_env && echo ''
|
69
|
+
print_project_env
|
70
|
+
}
|
71
|
+
|
72
|
+
print_global_env() {
|
73
|
+
if [ -r "$HOME/.docker-runner" ]; then
|
74
|
+
echo "全局变量:"
|
75
|
+
cat $HOME/.docker-runner
|
76
|
+
else
|
77
|
+
echo "找不到全局 ~/.docker-runner 文件, 请执行 docker-runner init"
|
78
|
+
fi
|
79
|
+
}
|
80
|
+
|
81
|
+
print_project_env() {
|
82
|
+
if [ -r ".docker-runner" ]; then
|
83
|
+
echo "项目变量:"
|
84
|
+
cat .docker-runner
|
85
|
+
else
|
86
|
+
echo "当前目录找不到 .docker-runner 文件"
|
87
|
+
fi
|
88
|
+
}
|
89
|
+
|
90
|
+
# 重置全局变量
|
91
|
+
rest_global_env() {
|
92
|
+
ask_global_env
|
93
|
+
set_default_global_env
|
94
|
+
save_global_env
|
95
|
+
print_global_env
|
96
|
+
}
|
97
|
+
|
98
|
+
#------------------------------------------------------------------------------
|
99
|
+
# 2. 环境变量默认值处理:
|
100
|
+
#------------------------------------------------------------------------------
|
101
|
+
|
102
|
+
# 设置环境变量默认值
|
103
|
+
# column 默认值
|
104
|
+
# -------------------+-------------------
|
105
|
+
# username 有
|
106
|
+
# image 必填
|
107
|
+
# version latest
|
108
|
+
# intro TODO
|
109
|
+
# gitlab_domain gitlab.caishuo.com
|
110
|
+
# gitlab_token 必填
|
111
|
+
# docker_host hub.caishuo.com
|
112
|
+
set_default_env() {
|
113
|
+
set_default_project_env
|
114
|
+
set_default_global_env
|
115
|
+
save_global_env
|
116
|
+
}
|
117
|
+
|
118
|
+
set_default_global_env() {
|
119
|
+
echo -e "全局变量:"
|
120
|
+
echo " - Docker Email: ${email:=$(default_email)}"
|
121
|
+
echo " - Gitlab Domain: ${gitlab_domain:=$(default_gitlab_domain)}"
|
122
|
+
echo " - Gitlab Token: ${gitlab_token}"
|
123
|
+
echo " - Docker Host: ${docker_host:=$(default_docker_host)}"
|
124
|
+
echo ''
|
125
|
+
}
|
126
|
+
|
127
|
+
set_default_project_env() {
|
128
|
+
echo -e "项目变量:"
|
129
|
+
echo " - 用户名: ${username:=$(default_username)}"
|
130
|
+
echo " - 镜像名称: ${image}"
|
131
|
+
echo " - 版本号: ${version:=latest}"
|
132
|
+
echo " - 镜像简介: ${intro:=TODO}"
|
133
|
+
echo ''
|
134
|
+
}
|
135
|
+
|
136
|
+
# 默认邮箱
|
137
|
+
default_email() {
|
138
|
+
git config user.email
|
139
|
+
}
|
140
|
+
|
141
|
+
# 默认用户名
|
142
|
+
default_username() {
|
143
|
+
local email=$(default_email)
|
144
|
+
echo ${email%%@*}
|
145
|
+
}
|
146
|
+
|
147
|
+
default_intro() {
|
148
|
+
echo ${intro}
|
149
|
+
}
|
150
|
+
|
151
|
+
default_gitlab_domain() {
|
152
|
+
echo 'gitlab.caishuo.com'
|
153
|
+
}
|
154
|
+
|
155
|
+
gitlab_api_endpoint() {
|
156
|
+
local domain=$(default_gitlab_domain)
|
157
|
+
echo "https://${domain}/api/v3"
|
158
|
+
}
|
159
|
+
|
160
|
+
default_docker_host() {
|
161
|
+
echo 'hub.caishuo.com'
|
162
|
+
}
|
163
|
+
|
164
|
+
#------------------------------------------------------------------------------
|
165
|
+
# 3. git & gitlab & template
|
166
|
+
#------------------------------------------------------------------------------
|
167
|
+
|
168
|
+
clone_template() {
|
169
|
+
git clone $TEMPLATE_URL $image && \
|
170
|
+
cd $image && \
|
171
|
+
rm -rf .git && \
|
172
|
+
echo "[模版下载成功]"
|
173
|
+
}
|
174
|
+
|
175
|
+
update_template() {
|
176
|
+
echo "模版更新: 当前代码分支[$(git rev-parse --abbrev-ref HEAD)], 即将拉取远程模版代码"
|
177
|
+
read -p "确认是否开始更新: (Y/n) " update_template
|
178
|
+
if ([ "$update_template" = '' ] || [ "$update_template" = 'Y' ] || [ "$update_template" = 'y' ]); then
|
179
|
+
git remote add upstream $TEMPLATE_URL && \
|
180
|
+
git fetch upstream && \
|
181
|
+
git merge upstream/master
|
182
|
+
else
|
183
|
+
echo 停止模版更新
|
184
|
+
fi
|
185
|
+
}
|
186
|
+
|
187
|
+
create_gitlab_project() {
|
188
|
+
(GITLAB_API_ENDPOINT="$(gitlab_api_endpoint)" \
|
189
|
+
GITLAB_API_PRIVATE_TOKEN="$gitlab_token" \
|
190
|
+
gitlab create_project $image "{description: $intro, public: false}" &> /dev/null || (echo '[Gitlab项目创建失败]' && exit 1))&& \
|
191
|
+
echo '[Gitlab项目创建成功]'
|
192
|
+
}
|
193
|
+
|
194
|
+
add_git() {
|
195
|
+
git init
|
196
|
+
git remote add origin ssh://git@gitlab.caishuo.com:10022/$username/$image.git &> /dev/null
|
197
|
+
git add .
|
198
|
+
git commit -am 'init project'
|
199
|
+
git push -u origin master
|
200
|
+
}
|
201
|
+
|
202
|
+
#------------------------------------------------------------------------------
|
203
|
+
# 4. project内部操作
|
204
|
+
#------------------------------------------------------------------------------
|
205
|
+
|
206
|
+
reset_project() {
|
207
|
+
save_project_env
|
208
|
+
echo ''
|
209
|
+
|
210
|
+
reset_readme
|
211
|
+
echo ''
|
212
|
+
|
213
|
+
reset_dockerfile
|
214
|
+
echo ''
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
reset_readme() {
|
219
|
+
if [ ! -d README.md ] || [ $(grep -c "这个repo是Docker镜像模版" README.md) -gt 0 ] || [ $(cat README.md | wc -c) -eq 0 ]; then
|
220
|
+
echo -n -e "# $image\n\n$(default_intro)\n\n\
|
221
|
+
## 镜像提交:\n\n~~~\n\
|
222
|
+
docker push hub.caishuo.com/$username/$image\n~~~\n\n
|
223
|
+
## 执行示例:\n\n~~~\n\
|
224
|
+
dr hub.caishuo.com/$username/$image /bin/sh\n~~~" > README.md
|
225
|
+
echo "[README.md重置成功]"
|
226
|
+
else
|
227
|
+
echo "README.md已跳过"
|
228
|
+
fi
|
229
|
+
}
|
230
|
+
|
231
|
+
reset_dockerfile() {
|
232
|
+
local str="MAINTAINER $username <$(default_email)>"
|
233
|
+
if [ $(grep -c "# MAINTAINER" Dockerfile) -gt 0 ]; then
|
234
|
+
sed -i '' "s/#.*com>/$str/g" Dockerfile && echo "[Dockerfile设置成功]"
|
235
|
+
else
|
236
|
+
echo "Dockerfile已跳过"
|
237
|
+
fi
|
238
|
+
}
|
239
|
+
|
240
|
+
|
241
|
+
#------------------------------------------------------------------------------
|
242
|
+
# 5. Build & Push
|
243
|
+
#------------------------------------------------------------------------------
|
244
|
+
|
245
|
+
README_PATH='README.md'
|
246
|
+
VALID_STR='这个repo是Docker镜像模版'
|
247
|
+
BUILD_ERR='请修改README.md, 编译已停止'
|
248
|
+
OFFICIAL_USER='docker'
|
249
|
+
|
250
|
+
|
251
|
+
error(){
|
252
|
+
echo **$@
|
253
|
+
}
|
254
|
+
|
255
|
+
valid_readme() {
|
256
|
+
if [ `grep -c "$VALID_STR" $README_PATH` -gt 0 ]; then
|
257
|
+
error $BUILD_ERR && \
|
258
|
+
open $README_PATH &&
|
259
|
+
return 0
|
260
|
+
fi
|
261
|
+
return 1
|
262
|
+
}
|
263
|
+
|
264
|
+
valid_variables() {
|
265
|
+
local result=1
|
266
|
+
if [ ! -n "$username" ] ;then
|
267
|
+
error '请在.docker-runner文件中配置username' && result=0
|
268
|
+
fi
|
269
|
+
|
270
|
+
if [ ! -n "$image" ];then
|
271
|
+
error '请在.docker-runner文件中配置image' && result=0
|
272
|
+
fi
|
273
|
+
|
274
|
+
return $result
|
275
|
+
}
|
276
|
+
|
277
|
+
set_image_name() {
|
278
|
+
if [ $username = $OFFICIAL_USER ]; then
|
279
|
+
img="$docker_host/$image:${version:-latest}"
|
280
|
+
else
|
281
|
+
img="$docker_host/$username/$image:${version:-latest}"
|
282
|
+
fi
|
283
|
+
}
|
284
|
+
|
285
|
+
build_image() {
|
286
|
+
set_image_name
|
287
|
+
(docker build $docker_opts -t $img .) && \
|
288
|
+
echo $img was built successfully
|
289
|
+
}
|
290
|
+
|
291
|
+
push_image() {
|
292
|
+
set_image_name
|
293
|
+
(docker push $docker_opts $img) && \
|
294
|
+
echo $img was pushed successfully
|
295
|
+
}
|
296
|
+
|
297
|
+
#------------------------------------------------------------------------------
|
298
|
+
# 6. Docker Registry Login & Logout & Tools
|
299
|
+
#------------------------------------------------------------------------------
|
300
|
+
|
301
|
+
docker_login() {
|
302
|
+
read -p "用户名($(default_username)): " username
|
303
|
+
echo "docker login -u ${username:=$(default_username)} -e $email $docker_host"
|
304
|
+
docker login -u ${username:=$(default_username)} -e $email $docker_host
|
305
|
+
}
|
306
|
+
|
307
|
+
docker_logout() {
|
308
|
+
docker logout $docker_host
|
309
|
+
}
|
310
|
+
|
311
|
+
docker_console() {
|
312
|
+
set_image_name
|
313
|
+
docker run -i -t --rm --name ${NAME:-tmp} $docker_opts $img /bin/sh
|
314
|
+
}
|
315
|
+
|
316
|
+
#------------------------------------------------------------------------------
|
317
|
+
# Public API
|
318
|
+
#------------------------------------------------------------------------------
|
319
|
+
|
320
|
+
# 创建新项目
|
321
|
+
do_new_project() {
|
322
|
+
ask_env && \
|
323
|
+
set_default_env && \
|
324
|
+
clone_template && \
|
325
|
+
reset_project && \
|
326
|
+
create_gitlab_project && \
|
327
|
+
add_git && \
|
328
|
+
echo -e '\n[镜像创建成功]'
|
329
|
+
}
|
330
|
+
|
331
|
+
do_setup() {
|
332
|
+
rest_global_env
|
333
|
+
echo ''
|
334
|
+
do_login
|
335
|
+
}
|
336
|
+
|
337
|
+
do_config() {
|
338
|
+
print_env
|
339
|
+
}
|
340
|
+
|
341
|
+
do_build() {
|
342
|
+
valid_readme ||\
|
343
|
+
valid_variables || build_image
|
344
|
+
}
|
345
|
+
|
346
|
+
do_push() {
|
347
|
+
valid_readme ||\
|
348
|
+
valid_variables || push_image
|
349
|
+
}
|
350
|
+
|
351
|
+
do_login() {
|
352
|
+
docker_login
|
353
|
+
}
|
354
|
+
|
355
|
+
do_logout() {
|
356
|
+
docker_logout
|
357
|
+
}
|
358
|
+
|
359
|
+
do_console() {
|
360
|
+
docker_console
|
361
|
+
}
|
362
|
+
|
363
|
+
do_update() {
|
364
|
+
update_template
|
365
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'docker/runner/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "docker-runner"
|
8
|
+
spec.version = Docker::Runner::VERSION
|
9
|
+
spec.authors = ["王长明"]
|
10
|
+
spec.email = ["wangchangming@caishuo.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A Docker Runner Cli.}
|
13
|
+
spec.description = %q{A Docker Runner Cli.}
|
14
|
+
spec.homepage = "https://gitlab.caishuo.com/docker/docker-runner"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "bin"
|
19
|
+
spec.executables = ['docker-runner']
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_dependency 'gitlab'
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: docker-runner
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "王长明"
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-04-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: gitlab
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.11'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.11'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: A Docker Runner Cli.
|
56
|
+
email:
|
57
|
+
- wangchangming@caishuo.com
|
58
|
+
executables:
|
59
|
+
- docker-runner
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- CODE_OF_CONDUCT.md
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/docker-runner
|
70
|
+
- bin/include/docker-runner.sh
|
71
|
+
- bin/include/functions.sh
|
72
|
+
- docker-runner.gemspec
|
73
|
+
- lib/docker/runner.rb
|
74
|
+
- lib/docker/runner/version.rb
|
75
|
+
homepage: https://gitlab.caishuo.com/docker/docker-runner
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.4.5
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: A Docker Runner Cli.
|
99
|
+
test_files: []
|