Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Table of Contents

Jenkins

Jenkins 개요

  • Jenkins is a free and open source automation server
  • It helps automate the parts of software development related to building, testing and deploying, facilitating continuous integration and continuous delivery

Jenkins 특징

  • 오픈소스인 자동화 서버
  • 다양한 플러그인 제공
    • Pipeline
    • Authentication / Authorization
    • Git
    • Docker
  • 다양하게 확장

Jenkins 설치 및 실행 with Docker-compose

  • Code Block
    version: '3.9'
    services:
    	jenkins:
    		image: jenkins/jenkins:latest #2.60.3
    		container_name: jenkins
    		environment:
    			- "TZ=Asia/Seoul"
    		ports:
    			- "8080:8080"
    		volumes:
    			- "./data:/var/jenkins_home"

Jenkins Pipeline