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/concepts/defang-byoc.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,15 +35,15 @@ Please read the [AWS Provider](../providers/aws/aws.md) documentation for more d
35
35
36
36
:::info
37
37
38
-
The Public Preview of the v1 Defang BYOC DigitalOcean Provider as of October 1 2024.
38
+
The Defang DigitalOcean Provider is available for Public Preview as of October 2024.
39
39
:::
40
40
41
41
Please read the [DigitalOcean Provider](../providers/digitalocean/digitalocean.md) documentation for more details about how the DigitalOcean provider works and how to get started.
42
42
43
43
## GCP
44
44
45
45
:::info
46
-
Google Cloud Platform (GCP) support is coming soon to Defang. Stay tuned for updates!
46
+
The Defang GCP Provider is available for Public Preview as of December 2024.
47
47
:::
48
48
Please check out the [GCP Provider](../providers/gcp/) page for more details.
Copy file name to clipboardExpand all lines: docs/faq/warnings-errors.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ services:
90
90
### "Stack:… is in UPDATE_COMPLETE_CLEANUP_IN_PROGRESS state and cannot be updated"
91
91
- This happens if different version of the Defang CLI are used with the same AWS account. Each version one will try to update the CD stack to its version, back and forth. Make sure that all users have the same version of the CLI. Check the CLI version using `defang version`.
92
92
93
-
### "invalid healthcheck: ingress ports require an HTTP healthcheck on `localhost`.
93
+
### "invalid healthcheck: ingress ports require an HTTP healthcheck on `localhost`."
94
94
95
95
- This message is displayed when `defang compose up` tries to deploy a service with an "ingress" port, if the service does not have a `healthcheck` which mentions `localhost`. Defang routes a load balancer to your service's ingress ports, and the loadbalancer needs to be able to check the health of the service. To solve this issue, ask yourself these two questions:
96
96
@@ -104,7 +104,7 @@ services:
104
104
- - "1234:1234"
105
105
+ - "1234"
106
106
```
107
-
2. Does my healthcheck include the string `localhost`? It is very common to define a healthcheck by using `curl` or `wget` to make a request to `localhost`. So common, in fact, that defang will look for the string `localhost` in your healthcheck definition. For example, this healthcheck is valid:
107
+
2. Does my healthcheck include the string `localhost`? It is very common to define a healthcheck by using `curl` or `wget` to make a request to `localhost`. So common, in fact, that Defang will look for the string `localhost` in your healthcheck definition. For example, this healthcheck is valid:
108
108
109
109
```yaml
110
110
healthcheck:
@@ -118,7 +118,7 @@ services:
118
118
test: ["CMD", "./my-healthcheck"]
119
119
```
120
120
121
-
### The build aborted with OutOfMemoryError: Container killed due to memory usage
121
+
### "The build aborted with OutOfMemoryError: Container killed due to memory usage"
122
122
123
123
The image build might fail if the build process uses too much memory. The first thing to try is to limit the size of your project by excluding unnecessary files: the easiest way is to create a `.dockerignore` file that excludes irrelevatn files. Note that Defang will use a default `.dockerignore` file if you don't have one, but that default might not work for some projects and it's always better to make a `.dockerignore` file specific to your project.
Copy file name to clipboardExpand all lines: docs/providers/azure.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ sidebar_position: 4000
7
7
# Azure
8
8
9
9
:::info
10
-
We will be working on Microsoft Azure support in the future. If you are interested in Azure support, please vote on [this issue](https://github.com/DefangLabs/defang/issues/57).
10
+
We will be working on Azure support in the future. If you are interested in Azure support, please vote on [this issue](https://github.com/DefangLabs/defang/issues/57).
11
11
:::
12
12
13
13
You can learn more about other cloud [providers](/docs/category/providers/).
Copy file name to clipboardExpand all lines: docs/providers/digitalocean/digitalocean.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ sidebar_position: 010
10
10
The Defang DigitalOcean Provider is available for Public Preview as of October 2024.
11
11
:::
12
12
13
-
Why should you use Defang with DigitalOcean? Defang allows you to easily create and manage full, scalable applications with DigitalOcean. Defang aims to make it easier to deploy your services to the cloud. DigitalOcean is one of the most popular cloud providers in the world and with Defang, you don't have to waste your time understanding the complexities and challenges of the DigitalOcean platform. Let Defang do it for you and spend more time working on what's important to you!
13
+
Why should you use Defang with DigitalOcean? Defang allows you to easily create and manage full, scalable applications with DigitalOcean. Defang aims to make it easier to deploy your services to the cloud. DigitalOcean is one of the most popular cloud providers in the world and with Defang, you can bypass the complexities of the DigitalOcean platform. Let Defang do it for you and spend more time working on what's important to you!
0 commit comments