This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-runner-podman/engine/testdata/network_default.yml
2019-10-22 15:21:57 -07:00

22 lines
304 B
YAML

kind: pipeline
type: docker
name: default
clone:
disable: true
steps:
- name: test
pull: if-not-exists
image: redis
commands:
- sleep 5
- redis-cli -h redis ping
- redis-cli -h redis set FOO bar
- redis-cli -h redis get FOO
services:
- name: redis
pull: if-not-exists
image: redis