Skip to content

Instantly share code, notes, and snippets.

@eeganlf
Forked from initcron/Jenkinsfile
Created July 13, 2022 01:21
Show Gist options
  • Select an option

  • Save eeganlf/e2c938666595c060dd2f320a2c5f7c28 to your computer and use it in GitHub Desktop.

Select an option

Save eeganlf/e2c938666595c060dd2f320a2c5f7c28 to your computer and use it in GitHub Desktop.
Deploy to Dev Stage
stage('deploy to dev'){
agent any
when{
branch 'master'
}
steps{
echo 'Deploy instavote app with docker compose'
sh 'docker-compose up -d'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment