Skip to content

Instantly share code, notes, and snippets.

View git-developer's full-sized avatar

Christian git-developer

View GitHub Profile
@jasonk
jasonk / Jenkinsfile
Last active February 12, 2025 16:56
Docker credential helper for authenticating from environment variables
pipeline {
environment {
DOCKER_REGISTRY = 'https://my-docker-registry.example.com'
DOCKER_CREDS = credentials( 'my-docker-credentials' )
}
}