feat: jenkins server

This commit is contained in:
aagusfernandez02
2026-07-01 08:13:57 -03:00
commit 748704317b
6 changed files with 547 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
jenkins:
build:
context: ./data/jenkins
dockerfile: Dockerfile
container_name: jenkins-server
restart: unless-stopped
environment:
- JAVA_OPTS=-Djenkins.install.runSetupWizard=false
ports:
- "8080:8080"
- "50000:50000"
volumes:
- jenkins_home:/var/jenkins_home
- ./data/jenkins/jenkins.yaml:/usr/share/jenkins/ref/jenkins.yaml:ro
- ./data/jenkins/deploy:/opt/deploy:ro
- ./data/jenkins/pipelines/Jenkinsfile.ralph:/opt/jenkins/Jenkinsfile.ralph:ro
volumes:
jenkins_home: