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 =
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