FAQ
Which cloud/region is the app being deployed to?
- In the Defang Playground the app is deployed to AWS
us-west-2
. In the Defang BYOC model, the region is determined by your Defang BYOC Provider settings.
Can I bring my own AWS or other cloud account?
- Yes! Please check out the Defang BYOC documentation for more information.
On AWS, can I deploy to services such as EC2, EKS, or Lambda?
- The current release includes support for containers only, deployed to ECS. We are still exploring how to support additional execution models such as VMs and functions-as-a-service. However, using our Pulumi provider, it is possible to combine Defang services with other native AWS resources.
Can I access AWS storage services such as S3 or database services such as RDS? How?
- Yes, you can access whatever other resources exist in the cloud account you are using as a Defang BYOC Provider.
Do you plan to support other clouds?
- While we currently support AWS as a Defang BYOC Provider, we plan to support other clouds in future releases, such as Azure and GCP.
Can I run production apps with Defang?
- The Defang Playground is meant for testing and trial purposes only. Deployment of productions apps with Defang BYOC is not yet supported and disallowed by the Terms of Service. If you are interested in running production apps, please contact us.
I'm having trouble running the binary on my Mac. What should I do?
- MacOS users will need to allow the binary to run due to security settings:
- Attempt to run the binary. You'll see a security prompt preventing you from running it.
- Go to System Preferences > Privacy & Security > General.
- In the 'Allow applications downloaded from:' section, you should see a message about Defang being blocked. Click 'Open Anyway'.
- Alternatively, select the option "App Store and identified developers" to allow all applications from the App Store and identified developers to run.
Warnings
"The folder is not empty. Files may be overwritten."
- This message is displayed when you run
defang generate
and the target folder is not empty. If you proceed, Defang will overwrite any existing files with the same name. If you want to keep the existing files, you should move them to a different folder before runningdefang generate
or pick a different target folder.
"environment variable not found"
- This message is displayed when you run
defang compose up
and the Compose file references an environment variable that is not set. If you proceed, the environment variable will be empty in the container. If you want to set the environment variable, you should set it in the environment where you rundefang compose up
.
"Unsupported platform"
- This message is displayed when you run
defang compose up
and the Compose file references a platform that is not supported by Defang. Defang Beta only supports Linux operating systems.
"not logged in"
- This message is displayed when you run
defang compose config
but you are not logged in. The displayed configuration will be incomplete. If you want to see the complete configuration, you should log in first usingdefang login
.
"No port mode was specified; assuming 'host'"
- This message is displayed when you run
defang compose up
and the Compose file declares aport
that does not specify a portmode
. By default, Defang will keep the port private. If you want to expose the port to the public internet, you should specify themode
asingress
:
services:
service1:
…
ports:
- target: 80
mode: ingress
"Published ports are not supported in ingress mode; assuming 'host'"
- This message is displayed when you run
defang compose up
and the Compose file declares aport
withmode
set toingress
andpublished
set to a port number. Defang does not support published ports in ingress mode. If you want to expose the port to the public internet, you should specify themode
asingress
and remove thepublished
setting.
"TCP ingress is not supported; assuming HTTP"
- This message is displayed when you run
defang compose up
and the Compose file declares aport
withmode
set toingress
andprotocol
set totcp
. Defang does not support arbitrary TCP ingress and will assume the port is used for HTTP traffic. To silence the warning, remove theprotocol
setting.
"unsupported compose directive"
- This message is displayed when you run
defang compose up
and the Compose file declares a directive that is not supported by Defang. The deployment will continue, but the unsupported directive will be ignored, which may cause unexpected behavior.
"no reservations specified; using limits as reservations"
- This message is displayed when you run
defang compose up
and the Compose file declares aresource
withlimits
but noreservations
. Defang will use thelimits
asreservations
to ensure the container has enough resources. Specifyreservations
if you want to silence the warning or reserve a different amount of resources:
services:
service1:
…
deploy:
resources:
reservations:
cpus: 0.5
memory: 512MB
"ingress port without healthcheck defaults to GET / HTTP/1.1"
- This message is displayed when you run
defang compose up
and the Compose file declares aningress
with aport
but nohealthcheck
. Defang will assume the default healthcheck ofGET / HTTP/1.1
to ensure the port is healthy. Specify ahealthcheck
if you want to silence the warning or use a different healthcheck:
services:
service1:
…
deploy:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/health"]
"missing memory reservation; specify deploy.resources.reservations.memory to avoid out-of-memory errors"
- This message is displayed when you run
defang compose up
and the Compose file doesn't specify amemory
reservation. If available, Defang will use thememory
limit as thememory
reservation. Specify amemory
reservation if you want to silence the warning or reserve a different amount of memory:
services:
service1:
…
deploy:
resources:
reservations:
memory: 512MB
"The build context contains more than 10 files"
- This message is displayed when you run
defang compose up
and the Compose file declares abuild
with acontext
that contains more than 10 files. Ensure the context refers to the correct folder. Defang will use thecontext
as is, but you may experience slow build times. If you want to speed up the build, you should reduce the number of files in thecontext
.
"AWS provider was selected, but AWS environment variables are not set"
- This message is displayed when you run
defang compose up
with the--provider=aws
but none of the AWS environment variables were set. If you proceed, the deployment might fail, unless you have defined defineddefault
credentials in the AWS configuration files or are running on an AWS instance.
"Using Defang provider, but AWS environment variables were detected"
- This message is displayed when you run
defang compose up
with the--provider=defang
but AWS environment variables were detected. The AWS environment variables will be ignored.
Errors
"Stack:… is in UPDATE_COMPLETE_CLEANUP_IN_PROGRESS state and cannot be updated"
- 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
.
"invalid healthcheck: ingress ports require an HTTP healthcheck on localhost
.
- This message is displayed when
defang compose up
tries to deploy a service with an "ingress" port, if the service does not have ahealthcheck
which mentionslocalhost
. 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:
-
Should my service be public? It's common to declare your container's ports using the Compose file "shorthand" syntax (
1234:1234
). This syntax can be understood as[HOST:]CONTAINER
. If your service is not intended to be public, you do not need to declare a HOST port. For example:services:
my-service:
image: my-image
ports:
- - "1234:1234"
+ - "1234" -
Does my healthcheck include the string
localhost
? It is very common to define a healthcheck by usingcurl
orwget
to make a request tolocalhost
. So common, in fact, that defang will look for the stringlocalhost
in your healthcheck definition. For example, this healthcheck is valid:healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:1234/health"]This healthcheck is not valid for
ingress
ports:healthcheck:
test: ["CMD", "./my-healthcheck"]
The build aborted with OutOfMemoryError: Container killed due to memory usage
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.
If that doesn't work, you can try to increase the memory available to the build process by adding a field shm_size
to the build
section in your compose.yaml
file:
services:
service1:
build:
context: .
shm_size: 16g