mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
- 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.
13 lines
225 B
YAML
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: {} |