Files
TallerCiCd/jenkins/jenkins-compose.yml
2025-12-20 18:45:02 +01:00

22 lines
379 B
YAML

version: "3.9"
services:
jenkins:
build:
context: .
dockerfile: Dockerfile.jenkins
container_name: jenkins
ports:
- "8080:8080"
- "50000:50000"
volumes:
- jenkins_home:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
group_add:
- "${DOCKER_GID}"
restart: unless-stopped
volumes:
jenkins_home: