jenkins-studies

Repositório para centralizar meus estudos em Jenkins.

Stars
0
Committers
2

Jenkins Studies

Doc. Jenkins

Getting started with Jenkins - Download

Doc.

Creating your first Pipeline

Hello World - Doc.

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

Related Projects