Skip to content

Commit 05db39e

Browse files
authored
Merge pull request #157 from DefangLabs/linda-statuses
Added Service Statuses
2 parents 69a0b16 + 5be15f7 commit 05db39e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

docs/concepts/services.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,25 @@ Defang manages the deployment process for services. You can learn more about how
2121
:::info
2222
We plan to add support for other types of services in the future, including serverless functions.
2323
:::
24+
25+
## Service Status
26+
27+
An overview of the possible statuses for a service in Defang.
28+
29+
| Status | Details |
30+
|-|-|
31+
| BUILD_QUEUED | The service update has been received and is now in the queue for its image to be built. |
32+
| BUILD_PROVISIONING | The container orchestrator is provisioning the necessary resources for building your service's image. |
33+
| BUILD_PENDING | The necessary resources to build your service have been provisioned but the build has not yet been initiated. |
34+
| BUILD_ACTIVATING | The container orchestrator is pulling the build container's image and creating the build container. |
35+
| BUILD_RUNNING | The container which builds your service's image is successfully running. |
36+
| BUILD_STOPPING | The container orchestrator has sent a termination signal to the build container and is waiting for the build process to stop. |
37+
| BUILD_FAILED | The build container exited with a non-zero status code. |
38+
| UPDATE_QUEUED | The service update has been received and is now in the queue. |
39+
| SERVICE_DEPLOYMENT_PENDING | The necessary resources to run your service have been provisioned but the service has not yet been initiated. |
40+
| SERVICE_DEPLOYMENT_COMPLETED | Your service has been deployed and is healthy. |
41+
| SERVICE_DEPLOYMENT_FAILED | Your service could not be deployed. |
42+
43+
:::tip
44+
You can run the `defang compose ps` command to view the status of your services.
45+
:::

0 commit comments

Comments
 (0)