Skip to content

Instantly share code, notes, and snippets.

View goldbergyoni's full-sized avatar
💭
I may be slow to respond

Yoni Goldberg goldbergyoni

💭
I may be slow to respond
View GitHub Profile
@bvis
bvis / Jenkinsfile
Last active January 5, 2026 21:30
Jenkin pipeline definition example to be integrated with Docker Swarm cluster in our CI/CD environment
pipeline {
agent { node { label 'swarm-ci' } }
environment {
TEST_PREFIX = "test-IMAGE"
TEST_IMAGE = "${env.TEST_PREFIX}:${env.BUILD_NUMBER}"
TEST_CONTAINER = "${env.TEST_PREFIX}-${env.BUILD_NUMBER}"
REGISTRY_ADDRESS = "my.registry.address.com"
SLACK_CHANNEL = "#deployment-notifications"
@balupton
balupton / README.md
Last active June 7, 2021 16:00
Node.js Best Practice Exception Handling