Files
TallerCiCd/jenkins/jenkins-compose.yml
2025-12-21 12:22:39 +01:00

20 lines
363 B
YAML

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: