18 lines
205 B
YAML
18 lines
205 B
YAML
|
|
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build
|
|
commands:
|
|
- docker build .
|
|
- name: run
|
|
commands:
|
|
- docker-compose up --build -d
|
|
|