Skip to content

Commit a15e76e

Browse files
FAQs
1 parent 8c39a1c commit a15e76e

File tree

1 file changed

+31
-5
lines changed

1 file changed

+31
-5
lines changed

docs/faq.md

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: Frequently asked questions about Defang.
1313

1414
### Can I bring my own AWS or other cloud account?
1515

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.
1717

1818
### On AWS, can I deploy to services such as EC2, EKS, or Lambda?
1919

@@ -23,13 +23,37 @@ description: Frequently asked questions about Defang.
2323

2424
- Yes, you can access whatever other resources exist in the cloud account you are using as a [Defang BYOC](./concepts/defang-byoc.md) Provider.
2525

26-
### Do you plan to support other clouds?
26+
### Can I run production apps with Defang?
2727

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).
2929

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?
3143

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).
3357

3458
### I'm having trouble running the binary on my Mac. What should I do?
3559

@@ -39,6 +63,8 @@ description: Frequently asked questions about Defang.
3963
3. In the 'Allow applications downloaded from:' section, you should see a message about Defang being blocked. Click 'Open Anyway'.
4064
4. Alternatively, select the option "App Store and identified developers" to allow all applications from the App Store and identified developers to run.
4165

66+
### Does Defang Support
67+
4268
## Warnings
4369

4470
### "The folder is not empty. Files may be overwritten."

0 commit comments

Comments
 (0)