Skip to content

Commit df2db3c

Browse files
committed
docs(srv): update
1 parent 11a0565 commit df2db3c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

pages/serverless-containers/faq.mdx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,15 @@ You can copy an image from an external registry using the Docker CLI, or open so
177177
A Serverless Container is set to `ready` once the specified port is correctly bound to the container, and will start receiving traffic. If your application needs to perform some tasks before receiving traffic (e.g. connect to a database), it is important to run them before binding to the port (starting the webserver).
178178
For now, the `HEALTHCHECK` Docker directive has no impact on container readiness. In the future, the health check will be customizable for your applications.
179179

180-
### How can I make my application compatible with Serverless Containers ?
180+
### How do I know if my application is compatible with Serverless Containers ?
181181

182-
You can make your application compatible with Serverless Containers by:
182+
Your application is compatible with Serverless Containers if it meets the following criteria:
183183

184-
- listening on port 0.0.0.0
185-
- responding to HTTP or gRPC requests.
184+
- It must handle requests delivered via HTTP, HTTP/2, WebSockets, or gRPC.
185+
- It must not require a persistent local storage, but either a local [ephemeral storage](/serverless-containers/concepts/#ephemeral-storage), or a network file system.
186+
- It must be able to handle multiple instances of the app running simultaneously.
187+
- It must fit the [Serverless Containers limitations](/serverless-containers/reference-content/containers-limitations/)
188+
- It must expose a webserver port to be accessible.
186189

187190
## Network and storage
188191

0 commit comments

Comments
 (0)