kyberorg-lab / storeme-api

Simple CRUD API that stores notes
https://store-api.yadev.eu
MIT License
0 stars 0 forks source link

DevOps: Build maven using docker with repo volume #4

Open kyberorg opened 4 years ago

kyberorg commented 4 years ago

Build maven using docker with repo volume to speed build process up.

kyberorg commented 4 years ago
agent none;

stage {
  agent {
    docker {
       image: 'maven:3-alpine'
       label: 'my-label'
       args: '-v /dir:/dir'
    }
  }
}