このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
myitinos
/
HackTheGame-v002
フォーク元
myitinos/HackTheGame-v001
ウォッチ
1
スター
0
フォーク
1
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ラベル
マイルストーン
新しいプルリクエスト
#1
add some files for automated build with drone CI
マージ済み
myitinos
が 2 個のコミットを
soekarmana/HackTheGame-v002:master
から
master
へマージ
5年前
会話
0
コミット
2
変更されたファイル
2
2個のファイルの変更
、
24行の追加
、
0行の削除
空白
変更をすべて表示
行の比較で空白を無視
空白の長さの違いは無視
行末の空白の違いは無視
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+10
-0
.drone.yml
+14
-0
build-image.sh
+ 10
- 0
.drone.yml
ファイルの表示
@ -0,0 +1,10 @@
pipeline:
build-docker:
image
:
docker:18.06.1-ce
volumes:
-
/var/run/docker.sock:/var/run/docker.sock
commands:
-
chmod +x ./build-image.sh
-
./build-image.sh
when:
event
:
[
push]
+ 14
- 0
build-image.sh
ファイルの表示
@ -0,0 +1,14 @@
#!/bin/sh
set
-e
set
-o xtrace
IMAGE_NAME
=
HackTheGame-v002
# clean old images
OLD_IMAGES
=
$(
docker images
$IMAGE_NAME
-q --no-trunc
)
if
[
-n
"
${
OLD_IMAGES
}
"
]
;
then
docker rmi -f
${
OLD_IMAGES
}
;
fi
#Build Images
docker build . -t
$IMAGE_NAME
書き込み
プレビュー
読み込み中…
キャンセル
保存