QuentinHsu / Document-Page

以 issue 页面为文档记录/阅读的仓库,亦方便讨论
24 stars 1 forks source link

Docker Compose for CRON job #11

Open ashishsme14 opened 3 years ago

ashishsme14 commented 3 years ago

We had a task to Create a docker file with ubuntu image

  1. Create a print.sh file which has code to print date and time
  2. Write a cron file named "hello-cron" which includes the print.sh to run for every 1 min.
  3. The docker image should have a CRON job to print date and time every 1 min

We created a print.sh file via vi command and in it given as

#!/bin/sh -l
time=$(date)
echo "::set-output name=time::$time"

After which we had executed -

chmod +x print.sh

then tried as -

* * * * * /home/scrapbook/tutorial

Not sure where we went wrong, please guide us.