Files
templates/blueprints/jenkins/docker-compose.yml
Jemg 26fcbe302d Add Jenkins blueprint template configuration (#634)
- Created a new TOML configuration file for Jenkins blueprint.
- Defined main domain variable and service configuration for Jenkins.
- Set serviceName to "jenkins" with port 8080 and host as the main domain.
2026-01-28 00:45:19 -06:00

13 lines
225 B
YAML

version: "3.8"
services:
jenkins:
image: jenkins/jenkins:latest
volumes:
- jenkins-home:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8080
volumes:
jenkins-home: {}