Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1023 Bytes

README.md

File metadata and controls

49 lines (37 loc) · 1023 Bytes

Spring Boot, Maven and Concourse

Setup

Prerequisites

$ brew install git
$ brew cask install virtualbox
$ brew cask install vagrant
$ brew cask install java

Setting up the VM

$ cd ~/workspace
$ mkdir concourse
$ vagrant init concourse/lite
$ vagrant up

Setting up the Command Line Tool

$ cp ~/Downloads/fly /usr/local/bin
$ chmod u+x /usr/local/bin/fly
$ fly -t lite login -c http://192.168.100.4:8080

Adding the Project to Concourse

$ cd ~/workspace
$ git clone https://github.com/spilth/concourse-maven-spring-boot.git
$ cd concourse-maven-spring-boot
$ fly -t lite set-pipeline -p concourse-maven-spring-boot -c concourse/pipeline.yml
$ fly -t lite unpause-pipeline -p concourse-maven-spring-boot

Resources