14 lines
223 B
YAML
14 lines
223 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: html_validate
|
||
|
image: ubuntu
|
||
|
commands:
|
||
|
- apt-get update && apt-get install -y docker-compose
|
||
|
- docker-compose config --services
|
||
|
trigger:
|
||
|
branch:
|
||
|
- master
|