Link to these links: https://git.io/vKSVZ
Module 1:
- Run jenkins from war file:
jenkins -jar jenkins.war - Run jenkins from docker:
docker run -d \
--restart unless-stopped \
--name jenkins \| <?xml version='1.0' encoding='UTF-8'?> | |
| <project> | |
| <actions/> | |
| <description></description> | |
| <keepDependencies>false</keepDependencies> | |
| <properties/> | |
| <scm class="hudson.plugins.git.GitSCM" plugin="git@2.5.2"> | |
| <configVersion>2</configVersion> | |
| <userRemoteConfigs> | |
| <hudson.plugins.git.UserRemoteConfig> |
Link to these links: https://git.io/vKSVZ
Module 1:
jenkins -jar jenkins.wardocker run -d \
--restart unless-stopped \
--name jenkins \| stage 'CI' | |
| node { | |
| git branch: 'jenkins2-course', | |
| url: 'https://github.com/g0t4/solitaire-systemjs-course' | |
| // pull dependencies from npm | |
| // on windows use: bat 'npm install' | |
| sh 'npm install' |
Shortened URL for this gist: https://git.io/v68XM
GitHub repository: ES6 in Motion
Arrow Functions
Shortened URL for this gist: https://git.io/vitgf
Access this gist via: https://git.io/vPnaU GitHub repo: https://git.io/vP819 (https://github.com/g0t4/pluralsight-dotnet-core-windows/)
Links:
Access this Gist via this shortened URL: https://git.io/vPj49
If anything changes, with regards to the material covered in this course, this will be the first place I share updates.
docker-compose.yml and config.yml in the same directory on one of your volumes on the NAS.docker-compose up -dcurl --head http://NAS-IP:55000--registry-mirror=http://NAS-IP:55000curl http://NAS-IP:55000/v2/_catalog
| #!/bin/bash | |
| wget https://gist.githubusercontent.com/g0t4/c4d382b0aa0b15ed3454f501d2102500/raw/c39c6662fa15e4ad9c842eae9e2724dd1810d7eb/table.adoc | |
| # this docker image comes preloaded with many extensions! https://hub.docker.com/r/asciidoctor/docker-asciidoctor/~/dockerfile/ | |
| # docs for asciidoctor-diagram extension http://asciidoctor.org/docs/asciidoctor-diagram/ | |
| # volume mount for current working directory, to ready table.adoc and write resultant output file | |
| # function to hide away the docker run and volume plumbing, treat like it is installed locally :) | |
| asciidoctor() { docker run --rm -v $(pwd):/documents asciidoctor/docker-asciidoctor asciidoctor "$@" ; } |