Skip to content

Instantly share code, notes, and snippets.

View genericpenguin's full-sized avatar

genericpenguin

View GitHub Profile
@genericpenguin
genericpenguin / Jenkinsfile
Last active December 9, 2020 00:22 — forked from jasonk/Jenkinsfile
Docker credential helper for authenticating from environment variables
pipeline {
environment {
DOCKER_REGISTRY = 'https://my-docker-registry.example.com'
DOCKER_CREDS = credentials( 'my-docker-credentials' )
}
}