docker-compose-jenkins.yml

This commit is contained in:
emil28092005
2026-01-16 07:17:56 +03:00
parent 19433276af
commit b894e3a6f1
+15
View File
@@ -0,0 +1,15 @@
services:
jenkins:
image: jenkins/jenkins:lts-jdk17
container_name: jenkins
ports:
- "8080:8080"
- "50000:50000"
volumes:
- jenkins_home:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
- /opt/shagram:/workspace
restart: unless-stopped
volumes:
jenkins_home: