From 593b7cdf6adbe731572f92438f48454b7c1c319f Mon Sep 17 00:00:00 2001 From: yohamta Date: Sun, 20 Nov 2022 19:08:51 +0900 Subject: [PATCH] update README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 762f3fea9..fccacd988 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,9 @@ It runs DAGs (Dir - [Repeating Task](#repeating-task) - [Other Available Fields](#other-available-fields) - [Executor](#executor) - - [Running Docker Image](#running-docker-image) - - [Executing HTTP Request](#executing-http-request) - - [Executing Remote Command via SSH](#executing-remote-command-via-ssh) + - [Run Docker Image](#run-docker-image) + - [Execute HTTP Request](#execute-http-request) + - [Execute Command via SSH](#execute-command-via-ssh) - [Admin Configuration](#admin-configuration) - [Environment Variable](#environment-variable) - [Sending email notifications](#sending-email-notifications) @@ -453,7 +453,7 @@ The global configuration file `~/.dagu/config.yaml` is useful to gather common s Executor is a different way of executing a Step; Executor can be set in the `executor` field. -### Running Docker Image +### Run Docker Image The Docker Executor allows us to run arbitrary docker image. The below example runs [Deno's docker image](https://hub.docker.com/r/denoland/deno) and prints 'Hello World'. @@ -496,7 +496,7 @@ See Docker's API document for all available options. - For `container`, see [ContainerConfig](https://pkg.go.dev/github.com/docker/docker/api/types/container#Config). - For `host`, see [HostConfig](https://pkg.go.dev/github.com/docker/docker/api/types/container#HostConfig). -### Executing HTTP Request +### Execute HTTP Request The HTTP Executor allows us to send arbitrary HTTP requests. @@ -518,7 +518,7 @@ steps: } ``` -### Executing Remote Command via SSH +### Execute Command via SSH The SSH Executor allows us to execute arbitrary command on a remote host.