diff --git a/.gitignore b/.gitignore index beeb899..5fa7b48 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ .idea *.iml -home_dir config.json diff --git a/README.md b/README.md index 9ffb018..d2e7e61 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ 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 -- `name`: Human readable name that will be used as teh job filename. Optional. +- `name`: Human readable name that will be used as the job filename. Will be converted into a slug. Optional. - `comment`: Comments to be included with crontab entry. Optional. - `schedule`: Crontab schedule syntax as described in https://en.wikipedia.org/wiki/Cron. Ex `@hourly`, `@every 1h30m`, `* * * * *`. Required. - `command`: Command to be run on in crontab container or docker container/image. Required. diff --git a/docker-compose.yml b/docker-compose.yml index 223da1d..493ec84 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,4 +12,4 @@ services: volumes: - "/var/run/docker.sock:/var/run/docker.sock:ro" # - "/usr/bin/docker:/usr/bin/docker:ro" - - "/Users/willfarrell/Development/docker/docker-crontab/home_dir:/opt/crontab:rw" + - "/Users/willfarrell/Development/docker/docker-crontab/config.json:/opt/crontab/config.json:rw" diff --git a/docker-entrypoint b/docker-entrypoint index 440b3d3..a65aea2 100755 --- a/docker-entrypoint +++ b/docker-entrypoint @@ -22,6 +22,9 @@ CRONTAB_FILE=/etc/crontabs/docker # Ensure dir exist - in case of volume mapping mkdir -p ${HOME_DIR}/jobs ${HOME_DIR}/projects +slugify() { + echo "$@" | iconv -t ascii | sed -r s/[~\^]+//g | sed -r s/[^a-zA-Z0-9]+/-/g | sed -r s/^-+\|-+$//g | tr A-Z a-z +} make_image_cmd() { DOCKERARGS=$(echo ${1} | jq -r .dockerargs) @@ -151,6 +154,7 @@ function build_crontab() { fi SCRIPT_NAME=$(jq -r .[$i].name ${CONFIG}) + SCRIPT_NAME=$(slugify $SCRIPT_NAME) if [ "${SCRIPT_NAME}" == "null" ]; then SCRIPT_NAME=$(cat /proc/sys/kernel/random/uuid) fi