Below is the yaml I am using
kind: pipeline
type: kubernetes
name: default
steps:
- name: build-project
user: root
image: gradle:jdk11
commands:
- ./gradlew clean build
- name: docker-compose
image: docker/compose
volumes:
- name: docker_socket
path: /var/run/docker.sock
commands:
- docker-compose -f docker-compose.yaml up -d
volumes:
- name: docker_socket
host:
path: /var/run/docker.sock
The build gets stuck…