mirror of
https://github.com/willfarrell/docker-crontab.git
synced 2025-04-04 14:05:11 +02:00
small bug fix
This commit is contained in:
parent
562ea8e433
commit
5507ffd878
@ -22,12 +22,12 @@ A great project, don't get me wrong. It was just missing certain key enterprise
|
||||
- Ability to trigger scripts in other containers on completion cron job using `trigger`.
|
||||
|
||||
## Config.json
|
||||
- `comment`: Comments to be included with crontab entry
|
||||
- `comment`: Comments to be included with crontab entry. Optional.
|
||||
- `schedule`: Crontab schedule syntax as described in https://godoc.org/github.com/robfig/cron. Ex `@hourly`, `@every 1h30m`, `* * * * * *`. Required.
|
||||
- `command`: Command to be run on docker container/image. Required.
|
||||
- `image`: Docker images name (ex `library/alpine:3.5`). Optional.
|
||||
- `project`: Docker Compose/Swarm project name. Optional, only applies when `contain` is included.
|
||||
- `container`: Full container name or container alias if `project` is set. Ignored if `image` is included.
|
||||
- `container`: Full container name or container alias if `project` is set. Ignored if `image` is included. Optional.
|
||||
- `dockerargs`: Command line docker `run`/`exec` arguments for full control. Defaults to ` `.
|
||||
- `trigger`: Array of docker-crontab subset objects. Subset includes: `image`,`project`,`container`,`command`,`dockerargs`
|
||||
|
||||
|
@ -47,14 +47,12 @@ EOF
|
||||
}
|
||||
|
||||
make_cmd() {
|
||||
IMAGE=$(echo ${1} | jq -r .image)
|
||||
CONTAINER=$(echo ${1} | jq -r .container)
|
||||
if [ "${IMAGE}" != "null" ]; then
|
||||
make_image_cmd
|
||||
elif [ "${CONTAINER}" != "null" ]; then
|
||||
make_container_cmd
|
||||
if [ "$(echo ${1} | jq -r .image)" != "null" ]; then
|
||||
make_image_cmd "$1"
|
||||
elif [ "$(echo ${1} | jq -r .container)" != "null" ]; then
|
||||
make_container_cmd "$1"
|
||||
else
|
||||
echo "echo 'Error making docker command, image or container param missing.'"
|
||||
echo ${1} | jq -r .command
|
||||
fi
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user