Files
dockerimages/curl/docker-entrypoint.sh

16 lines
116 B
Bash

#!/bin/bash
if [[ ! -z "${LOOP}"]]; then
while :
do
curl "$@"
sleep "${LOOP}"
done
else
curl "$@"
fi