mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
14 lines
204 B
YAML
14 lines
204 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: pod
|
|
spec:
|
|
containers:
|
|
- name: pod
|
|
image: alpine
|
|
command:
|
|
- "/bin/sh"
|
|
- "-c"
|
|
- "apk add --no-cache curl bash && sleep 60m"
|
|
|