Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carolinasfreitas/jenkins-studies
Repositório para centralizar meus estudos em Jenkins.
https://github.com/carolinasfreitas/jenkins-studies
jenkins
Last synced: about 1 month ago
JSON representation
Repositório para centralizar meus estudos em Jenkins.
- Host: GitHub
- URL: https://github.com/carolinasfreitas/jenkins-studies
- Owner: CarolinaSFreitas
- Created: 2024-07-01T12:44:04.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-10T00:00:28.000Z (4 months ago)
- Last Synced: 2024-10-10T18:44:23.559Z (about 1 month ago)
- Topics: jenkins
- Language: Dockerfile
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jenkins Studies
[Doc. Jenkins](https://www.jenkins.io/doc/tutorials/)
## Getting started with Jenkins - Download
[Doc.](https://www.jenkins.io/doc/pipeline/tour/getting-started/)
## Creating your first Pipeline
[Hello World - Doc.](https://www.jenkins.io/doc/pipeline/tour/hello-world/)
````
Jenkinsfile (Declarative Pipeline)
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'golang:1.22.5-alpine3.20' } }
stages {
stage('build') {
steps {
sh 'go version'
}
}
}
}
````## Configurando Nginx como Proxy Reverso
[How To Configure Nginx as a Reverse Proxy for Jenkins](https://www.youtube.com/watch?v=yixMeJGtLFk)