以下手順にて、Docker上でcronjobを実行し、出力した内容をcron.logファイルに保存したいのですが、cron.logファイルが作成されません。
何が原因でしょうか。
※実行環境.. Mac
① cronjobフォルダをホスト上に作成。
② cronjobフォルダ内に、task.shファイルを作成。
sh
1#!/bin/sh 2echo "[`date`] Hello!" >> /var/log/cron.log
③ cronjobフォルダ内に、cron-exampleファイルを作成。
***** root sh /usr/local/bin/task.sh
④ cronjobフォルダ内に、Dockerfileファイルを作成。
FROM ubuntu:16.04 RUN apt update RUN apt install -y cron COPY task.sh /usr/local/bin/ COPY cron-example /etc/cron.d/ RUN chmod 0644 /etc/cron.d/cron-example CMD ["cron", "-f"]
⑤ ターミナル上でcronjobフォルダに移動し、以下コマンドを実行。
$ docker image build -t example/cronjob:latest .
↓(実行結果)
[+] Building 2.8s (12/12) FINISHED
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 37B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [internal] load metadata for docker.io/library/ubuntu:16.04 2.5s
=> [auth] library/ubuntu:pull token for registry-1.docker.io 0.0s
=> [1/6] FROM docker.io/library/ubuntu:16.04@sha256:eed7e1076bbc1f342c4474c718e5438af4784f59a4e88ad687dbb98483b59ee4 0.0s
=> [internal] load build context 0.0s
=> => transferring context: 151B 0.0s
=> CACHED [2/6] RUN apt update 0.0s
=> CACHED [3/6] RUN apt install -y cron 0.0s
=> CACHED [4/6] COPY task.sh /usr/local/bin/ 0.0s
=> CACHED [5/6] COPY cron-example /etc/cron.d/ 0.0s
=> CACHED [6/6] RUN chmod 0644 /etc/cron.d/cron-example 0.0s
=> exporting to image 0.0s
=> => exporting layers 0.0s
=> => writing image sha256:ed32f7db11240c5e800833f50a538d7908fb54d7631e809bebdb6538c8fd88dc 0.0s
=> => naming to docker.io/example/cronjob:latest
⑥ 以下コマンドを実行。
docker container run -d --rm --name cronjob example/cronjob:latest
↓(実行結果)
91fff91400082f054c6cff262cc2068612068256e366d494c7ff7cf14ae92cd0
⑦ 以下コマンドを実行。
docker container exec -it cronjob tail -f /var/log/cron.log
↓(実行結果)
tail: cannot open '/var/log/cron.log' for reading: No such file or directory
tail: no files remaining