mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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.
This commit is contained in:
13
blueprints/jenkins/docker-compose.yml
Normal file
13
blueprints/jenkins/docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
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: {}
|
||||
1
blueprints/jenkins/jenkins.svg
Normal file
1
blueprints/jenkins/jenkins.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 22 KiB |
12
blueprints/jenkins/template.toml
Normal file
12
blueprints/jenkins/template.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
env = {}
|
||||
mounts = []
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "jenkins"
|
||||
port = 8080
|
||||
host = "${main_domain}"
|
||||
|
||||
19
meta.json
19
meta.json
@@ -3218,6 +3218,25 @@
|
||||
"media system"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "jenkins",
|
||||
"name": "jenkins",
|
||||
"version": "latest",
|
||||
"description": "Jenkins is a free, open-source automation server that helps developers build, test, and deploy software by automating repetitive tasks in the software delivery pipeline.",
|
||||
"logo": "jenkins.svg",
|
||||
"links": {
|
||||
"github": "https://github.com/jenkinsci/jenkins",
|
||||
"website": "https://www.jenkins.io/",
|
||||
"docs": "https://www.jenkins.io/doc/"
|
||||
},
|
||||
"tags": [
|
||||
"ci-cd",
|
||||
"devops",
|
||||
"automation",
|
||||
"pipelines",
|
||||
"open-source"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "kaneo",
|
||||
"name": "Kaneo",
|
||||
|
||||
Reference in New Issue
Block a user