Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/deploy/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ provider:
hello-world:
# Path to the `Dockerfile` file
path: ./
file: Dockerfile
platform: linux/amd64

functions:
hello:
Expand All @@ -116,6 +118,8 @@ When running `serverless deploy`, the CLI will:

Note that you can create multiple images in the same `serverless.yml` file. For example, you can have one image for the HTTP handler and another image for a worker.

You can read the detailed documentation about [all options available in the Serverless documentation](https://github.com/oss-serverless/serverless/blob/main/docs/guides/functions.md#referencing-container-image-as-a-target).

## Filesystem

Like with non-Docker deployments, the filesystem for Docker on AWS Lambda is also readonly with a limited disk space under `/tmp` for read/write.
Expand Down
Loading