You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/faq.md
+31-5Lines changed: 31 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ description: Frequently asked questions about Defang.
13
13
14
14
### Can I bring my own AWS or other cloud account?
15
15
16
-
- Yes! Please check out the [Defang BYOC](./concepts/defang-byoc.md) documentation for more information.
16
+
- Yes! Defang makes it easy to deploy your application to your own cloud account. Please check out the [Defang BYOC](./concepts/defang-byoc.md) documentation for more information.
17
17
18
18
### On AWS, can I deploy to services such as EC2, EKS, or Lambda?
19
19
@@ -23,13 +23,37 @@ description: Frequently asked questions about Defang.
23
23
24
24
- Yes, you can access whatever other resources exist in the cloud account you are using as a [Defang BYOC](./concepts/defang-byoc.md) Provider.
25
25
26
-
### Do you plan to support other clouds?
26
+
### Can I run production apps with Defang?
27
27
28
-
-While we currently support AWS as a [Defang BYOC](./concepts/defang-byoc.md) Provider, we plan to support other clouds in future releases, such as [Azure](./providers/azure.md) and [GCP](./providers/gcp.md).
28
+
-Yes! Defang makes it easy to deploy your app on production-ready infrastructure in your own cloud account. For example, you can deploy your app to AWS with `defang up --provider=aws --mode=production`. Check out your preferred cloud provider on [Defang BYOC](./concepts/defang-byoc.md).
29
29
30
-
### Can I run production apps with Defang?
30
+
### Does Defang support blue/green deployments?
31
+
32
+
- Defang does not currently support Blue/Green deploys, but it does support rolling updates with the `production` deployment mode. `defang up --mode=production`.
33
+
34
+
### Does Defang support rolling deployments?
35
+
36
+
- Yes! Defang supports rolling updates with the `production` deployment mode. `defang up --mode=production`.
37
+
38
+
### Can I cancel a deployment once it has started?
39
+
40
+
- No. Once a deployment has started, it cannot be canceled. However, you can always deploy a new version of your app which will replace the current deployment.
41
+
42
+
### Will deploying a new version of my app cause downtime?
31
43
32
-
- The [Defang Playground](./concepts/defang-playground.md) is meant for testing and trial purposes only. Deployment of productions apps with [Defang BYOC](./concepts/defang-byoc.md) is not yet supported and disallowed by the [Terms of Service](https://defang.io/terms-service.html). If you are interested in running production apps, please [contact us](https://defang.io/#Contact-us).
44
+
- If you have deployed your application with the `--mode=production` flag, Defang will use the _production_ deployment mode. This mode will provision your app with multiple replicas and will perform a rolling update to ensure zero downtime. If you use another deployment mode, you may experience downtime during the deployment, as defang will not provision multiple replicas to save cost.
45
+
46
+
### Can I deploy multiple services at once?
47
+
48
+
- Yes! You can deploy multiple services at once by defining them in a single compose.yaml file. When you run `defang compose up`, Defang will deploy all the services defined in the file at once.
49
+
50
+
### Can I deploy a service that depends on another service?
51
+
52
+
- Defang does not currently support service dependencies. All services will be deployed simultaneously. Defang will however run multiple healthchecks before marking a service as healthy and spinning down any previously deployed services when using the `production` deployment mode.
53
+
54
+
### Do you plan to support other clouds?
55
+
56
+
- While we currently support [AWS](./concepts/defang-byoc#aws) and [Digital Ocean](./concepts/defang-byoc#digitalocean), we plan to support other clouds in future releases, such [GCP](./providers/gcp.md) and [Azure](./providers/azure.md).
33
57
34
58
### I'm having trouble running the binary on my Mac. What should I do?
35
59
@@ -39,6 +63,8 @@ description: Frequently asked questions about Defang.
39
63
3. In the 'Allow applications downloaded from:' section, you should see a message about Defang being blocked. Click 'Open Anyway'.
40
64
4. Alternatively, select the option "App Store and identified developers" to allow all applications from the App Store and identified developers to run.
41
65
66
+
### Does Defang Support
67
+
42
68
## Warnings
43
69
44
70
### "The folder is not empty. Files may be overwritten."
0 commit comments