coolify/templates/compose/jenkins.yaml

22 lines
660 B
YAML
Raw Normal View History

2024-10-30 00:12:50 +00:00
# documentation: https://www.jenkins.io/doc/
# slogan: Jenkins is an open source automation server, Jenkins provides hundreds of plugins to support building, deploying and automating any project.
# category: ci
2024-10-30 00:12:50 +00:00
# tags: jenkins, automation, open-source
# logo: svgs/jenkins.svg
# port: 8080
services:
jenkins:
image: jenkins/jenkins:latest
2024-10-31 19:19:48 +00:00
environment:
- SERVICE_URL_JENKINS_8080
2024-10-30 00:12:50 +00:00
volumes:
2024-10-31 19:28:57 +00:00
- jenkins-home:/var/jenkins_home
2024-10-30 00:12:50 +00:00
- /var/run/docker.sock:/var/run/docker.sock
2024-11-01 15:36:38 +00:00
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/login"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s