proxyjenkins/docker-compose.yml

15 lines
270 B
YAML
Raw Normal View History

2024-05-28 17:50:38 +00:00
services:
jenkins:
2024-05-28 18:37:23 +00:00
image: jenkins/jenkins:2.460
2024-05-28 17:50:38 +00:00
container_name: jenkins
2024-05-28 18:03:14 +00:00
privileged: true
user: root
2024-05-28 17:50:38 +00:00
volumes:
- ./jenkins-data:/var/jenkins_home
ports:
- "8080:8080"
- "50000:50000"
restart: always
volumes:
jenkins-data: