Search: "sleep"
Practical Exercises for Docker Compose: Part 2 blog
-compose.yml ``` ``` version: "3.7" services: alpine: image: alpine:3.8 command: sleep 600 ...
Docker Container-Centric Commands for Beginners: Part 2 blog
sleep 1 echo -n " . " echo $i done exit 0 ``` Line 14 and 15 will call the relevant function based on the ...
Docker Container-Centric Commands for Beginners: Part 1 blog
container run -d --name mycontain alpine:3.8 sleep 3600 ``` Docker will show the random 64 character ID it generated for that ...
Kubernetes CronJobs - Part 1: Basics blog
imagePullPolicy: IfNotPresent command: ['sh', '-c', 'echo Job Pod is Running ; sleep 5' ...
Kubernetes Batch Jobs blog
Running ; sleep 10'] restartPolicy: Never terminationGracePeriodSeconds: 0 ``` A job does its work using Pods ...
Sample workflow templates - Container Service for Kubernetes Documentation
template: gen-number-list # Iterate over the list of numbers generated by the generate step above - - name: sleep ...
Kubernetes Resource Quotas blog
: ['sh', '-c', 'echo Pod is Running ; sleep 3600'] restartPolicy: Never ...
Helm Chart and Template Basics - Part 1 blog
no command or program running. The command let our busybox Pod sleep for 60 seconds. ( You can see in template extract below ...
Practical Exercises for Docker Compose: Part 1 blog
``` nano docker-compose.yml ``` ``` version: "3.7" services: alpine: image: alpine:3.8 command: sleep 600 ...
  • <
  • 1
  • 2
  • 3
  • 4
  • 5
  • ... 12
  • >
  •  Total 113 items