Skip to content

Instantly share code, notes, and snippets.

@initcron
Created December 31, 2020 10:45
Show Gist options
  • Select an option

  • Save initcron/37f5af9eaed654cad8740385bff43486 to your computer and use it in GitHub Desktop.

Select an option

Save initcron/37f5af9eaed654cad8740385bff43486 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