
Jenkins를 설치하고 기본설정을 해보자. 1. 젠킨스 docker-compose.yml 작성version: "3.9"services: jenkins: build: context: . dockerfile: Dockerfile.jenkins image: custom-jenkins:latest container_name: jenkins restart: always ports: - "8180:8080" volumes: - jenkins_data:/var/jenkins_home - /var/run/docker.sock:/var/run/docker.sock - /home/gunwook/app/service:/home/gunw..