Triggering pipeline builds when a commit is pushed to a branch or when a tag that matches a regex is pushed.

2019-07-14 Thread Francis Chuang
Hey all, I have a question with configuring Jenkins that I have been struggling with for a while. We are using Jenkins 2.150.1. My jenkinsfile looks like this: pipeline { agent { node { label 'some-node' } } environment { COMPOSE_PROJECT_NAME =

Docker-compose and docker hanging on jenkins

2019-06-12 Thread Francis Chuang
I currently have a docker-compose.yml file that is used to perform a jekyll build using `docker-compose run` as a one-off command: version: '3.7' services: build-site: image: jekyll/jekyll:3 command: jekyll build volumes: - .:/srv/jekyll volumes: - ../:/usr/src/calc