12 lines
218 B
YAML
12 lines
218 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: ubuntu:latest
|
|
pull: if-not-exists
|
|
commands:
|
|
- apt-get update && apt-get install -y iputils-ping
|
|
- ./tracert.sh google.com
|