File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,25 @@ Defang manages the deployment process for services. You can learn more about how
21
21
::: info
22
22
We plan to add support for other types of services in the future, including serverless functions.
23
23
:::
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
+ :::
You can’t perform that action at this time.
0 commit comments