This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle; | |
use AppBundle\DependencyInjection\Compiler\LdapCompilerPass; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; | |
use Symfony\Component\HttpKernel\Bundle\Bundle; | |
class AppBundle extends Bundle | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.kohsuke.github.* | |
/* | |
* This pipeline uses the Jenkins Job DSL plugin to create the multi-branch pipelines | |
* for your Github Organization repositories. | |
* | |
* @see https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin | |
* | |
* It does not consumes 5k requests in 6 minutes, but actually queries the Github API | |
* for the repositories in organization and creates the Multi-Branch Pipelines in Jenkins. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: clean-certs certificate certs.tar certs-renew | |
clean-certs: | |
rm -fr certs.tar .lego/certificates | |
ACME_SERVER ?= https://acme-v02.api.letsencrypt.org/directory | |
DOMAIN ?= "*.example.com" | |
DOMAIN_2 ?= "example.com" | |
certificate: clean-certs | |
docker run --rm -it \ |
OlderNewer