You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
377 B
18 lines
377 B
version: '3.8'
|
|
|
|
services:
|
|
jenkins:
|
|
image: jenkins/jenkins:lts
|
|
container_name: jenkins
|
|
ports:
|
|
- "8181:8080"
|
|
- "50000:50000"
|
|
volumes:
|
|
- jenkins_home:/var/jenkins_home
|
|
- ./init.groovy.d:/var/jenkins_home/init.groovy.d
|
|
environment:
|
|
- JAVA_OPTS=-Djenkins.install.runSetupWizard=false
|
|
restart: always
|
|
|
|
volumes:
|
|
jenkins_home:
|
|
|