From 90e51e74c99e4dd76db159482456da6cf84fe2ff Mon Sep 17 00:00:00 2001 From: Victory Osikwemhe Date: Wed, 4 Jan 2023 11:36:40 +0100 Subject: [PATCH] doc: add documentation for `READY` state --- engine/swarm/how-swarm-mode-works/swarm-task-states.md | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/swarm/how-swarm-mode-works/swarm-task-states.md b/engine/swarm/how-swarm-mode-works/swarm-task-states.md index b144564202..3038ab0f73 100644 --- a/engine/swarm/how-swarm-mode-works/swarm-task-states.md +++ b/engine/swarm/how-swarm-mode-works/swarm-task-states.md @@ -32,6 +32,7 @@ Tasks go through the states in the following order: | `PENDING` | Resources for the task were allocated. | | `ASSIGNED` | Docker assigned the task to nodes. | | `ACCEPTED` | The task was accepted by a worker node. If a worker node rejects the task, the state changes to `REJECTED`. | +| `READY` | The worker node is ready to start the task | | `PREPARING` | Docker is preparing the task. | | `STARTING` | Docker is starting the task. | | `RUNNING` | The task is executing. |