parent
cbe146ba1c
commit
0790af9d72
@ -1,13 +0,0 @@
|
||||
# .git 과 .cache 폴더를 무시
|
||||
.git
|
||||
.cache
|
||||
|
||||
# 모든 마크다운 파일들 (md) 파일들을 무시,
|
||||
# 모든 README*.md 파일 무시
|
||||
*.md
|
||||
IREADME*.md
|
||||
|
||||
node_modules
|
||||
npm-debug.log
|
||||
# build
|
||||
.idea
|
@ -1,22 +0,0 @@
|
||||
FROM nginx
|
||||
|
||||
ADD ./build /usr/share/nginx/html
|
||||
|
||||
# 80 포트 오픈
|
||||
EXPOSE 80
|
||||
|
||||
# container 실행 시 nginx 시작함
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
||||
# root 에 app 폴더를 생성
|
||||
# RUN mkdir /app
|
||||
# work dir 고정
|
||||
# WORKDIR /app
|
||||
# work dir 에 build 폴더 생성 /app/build
|
||||
# RUN mkdir ./build
|
||||
# host pc의 현재경로의 build 폴더를 workdir 의 build 폴더로 복사
|
||||
# ADD ./build ./build
|
||||
# nginx 의 default.conf backup
|
||||
# RUN mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.backup
|
||||
# host pc 의 nginx.conf 를 아래 경로에 복사
|
||||
# COPY ./nginx.conf /etc/nginx/conf.d
|
@ -1,12 +0,0 @@
|
||||
node {
|
||||
stage('Clone repository') {
|
||||
checkout scm
|
||||
}
|
||||
|
||||
stage('Build docker image') {
|
||||
app = docker.build("xit/opst-fo:latest") //docker image build 및 이름을 xit/opst-fo:$BUILD_NUMBER(빌드번호) 설정
|
||||
}
|
||||
//stage('Docker run'){
|
||||
// sh "docker run --rm --name opst-fo -d -p 80:80 xit/opst-fo:latest"
|
||||
//}
|
||||
}
|
Loading…
Reference in New Issue