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
2023-10-04 23:19:30 -05:00

22 lines
304 B
YAML

kind: pipeline
type: podman
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