| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 튜플
- 동적 모델링
- NUI
- 카디널리티
- C언어
- 후보키
- new Comparator
- 소수판정
- 럼바우 모델링
- arrays.sort
- vue
- CORS
- 백틱
- ""
- 최소성
- 포인터
- 라우트
- 객체지향설계원칙
- 유일성
- 슈퍼키
- 객체 모델링
- ''
- 다이나믹 프로그래밍
- 타디션프로젝트
- 유효성
- ``
- #v-on:click
- 기능 모델링
- route
- 릴레이션 인스턴스
- Today
- Total
목록전체 글 (16)
TY_Daily
인제는 앞까지는 ssh 접속이 필요한 경우를 대비해서 완료한것이다 이제는 결국 처음부터 쭉 보자 ! pipeline{agent any stages{ stage('Checkout'){ steps{ // git branch: 'feat-BE-user', git branch: 'develop', credentialsId: 'KTY', url: "https://lab.ssafy.com/s11-bigdata-recom-sub1/S11P21D207.git" } } stage('Kiosk Front_Build and Deploy Ki..
여러가지가 방식이 있는데 어차피 자기 인증만 하면 되는거니 필요한걸로 아무꺼나 해도 상관무!주의 점이 있다면 아래 작성하는거는 블로그 마다 다른게 너무 많은데 일단 내가 성공한 방식은 Username에는 github 아이디, Password는 github 비밀번호 아래 ID는 진짜 아무꺼나 jenkins내에 불릴 이름(KTY2) 같은걸로 했다! 아래와 같이 credentialsId(위의 ID에 한 걸로 하면 아래와 같이 성공!)pipeline{ agent any stages{ stage('Checkout'){ steps{ git branch: 'master', credentialsId: 'KTY2', u..
- 들어가기에 앞서 젠킨슨은 찾아보면 알겠지만 정말 방법이 다양하다! 그래서 내가한게 사용자에게 잘 안맞을수 있으니 그건 참고해주시면 바람 - 현재 정리한것 까지가 https 정리 전까지니 그걸 참고 해주시면 감사하겠습니다! 일단 대충 이런 방식으로 ! 운행된다고 생각하면 쉬움! - 일단 도커를 설치 해야한다!- 먼저 apt-get install, update 실시!- 도커설치 (공식문서)$ sudo apt-get update$ sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-release 그다음 도커 설치!$ sudo apt-get update$ sudo apt-get install docker-ce docker-ce-cli c..
pipeline{ agent any stages{ stage('Checkout'){ steps{ // git branch: 'feat-BE-user', git branch: 'develop', credentialsId: 'KTY', url: "https://lab.ssafy.com/s11-bigdata-recom-sub1/S11P21D207.git" } } stage('Kiosk Front_Build and Deploy Kiosk Front') { steps { ..
Docker CLI 설치# /var/run/docker.sock 파일의 권한을 666으로 변경하여 그룹 내 다른 사용자도 접근 가능하게 변경 sudo chmod 666 /var/run/docker.sock # ubuntu 유저를 docker 그룹에 추가 sudo usermod -a -G docker ubuntu출처: https://buildabetterworld.tistory.com/179 [Seungyeup's blog:티스토리] pipeline{agent any stages{ stage('gitclone'){ steps{ git branch: 'master', credentialsId: 'KTY2', ..
- 서버가 초기화 되었다.. 그래서 Dockerfile을 이용한 배포로 바꾸었다. - 먼저 현재의 도커는 docker out docker가 불가능한 구조로 되어있다 (해당 볼륨을 연결하지 않았기 때문) [참고] - 도커를 멈춘후 $ docker stop 컨테이너이름$ docker commit 컨테이너이름 원하는새repository이름:원하는새tag sudo docker run -d -p 8080:8080 -v /home/ubuntu/jenkins-data:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock --name jenkins2 jenkins_backup:latest - 해당 명령어를 통해 다시 실행한다 앞서와 차이라면 -v 을 /var/..
pipeline{ agent any stages{ stage('gitclone'){ steps{ git branch: 'master', credentialsId: 'KTY2', url: "https://lab.ssafy.com/s11-webmobile3-sub2/S11P12D101.git" } } stage('aws property file download play cp execute') { steps { withCredentials([file(credentialsId: 'db_pr..
여러가지가 방식이 있는데 어차피 자기 인증만 하면 되는거니 필요한걸로 아무꺼나 해도 상관무!주의 점이 있다면 아래 작성하는거는 블로그 마다 다른게 너무 많은데 일단 내가 성공한 방식은 Username에는 github 아이디, Password는 github 비밀번호 아래 ID는 진짜 아무꺼나 jenkins내에 불릴 이름(KTY2) 같은걸로 했다! 아래와 같이 credentialsId(위의 ID에 한 걸로 하면 아래와 같이 성공!)pipeline{ agent any stages{ stage('Checkout'){ steps{ git branch: 'master', credentialsId: 'KTY2', ..