diff --git a/docs/deploy/docker.mdx b/docs/deploy/docker.mdx index 295a962f4..d6c935f48 100644 --- a/docs/deploy/docker.mdx +++ b/docs/deploy/docker.mdx @@ -95,6 +95,8 @@ provider: hello-world: # Path to the `Dockerfile` file path: ./ + file: Dockerfile + platform: linux/amd64 functions: hello: @@ -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.