Jenkins

Jenkins

July 31, 2021
Jenkins

Jenkins # Install # Docker Compose # How to Install and Run Jenkins With Docker Compose Make docker-compose.yml https://hub.docker.com/_/jenkins version: '3.8' services: jenkins: container_name: jenkins image: jenkins/jenkins:latest privileged: true ports: - 8080:8080 volumes: - ./jenkins_home:/var/jenkins_home Run the following. $ docker-compose up -d Confirm the admin initial password. $ docker logs jenkins | less ************************************************************* ************************************************************* ************************************************************* Jenkins initial setup is required. An admin user has been created and a password generated. ...