이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
myitinos
/
HackTheGame-v002
원본 프로젝트 :
myitinos/HackTheGame-v001
보기
1
좋아요
0
포크
1
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
레이블
마일스톤
새 풀 리퀘스트
#1
add some files for automated build with drone CI
병합
myitinos
soekarmana/HackTheGame-v002:master
에서
master
로 2 commits 를 머지했습니다
5 년 전
대화
0
커밋
2
파일 변경됨
2
2개의 변경된 파일
과
24개의 추가작업
그리고
0개의 파일을 삭제
공백
모든 변경사항 보기
Ignore whitespace when comparing lines
Ignore changes in amount of whitespace
Ignore changes in whitespace at EOL
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
쓰기
미리보기
불러오는 중...
취소
저장