Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.md #1650

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 11 additions & 0 deletions content/en/user-guide/aws/lambda/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,17 @@ Error: Failed to create/update the stack: sam-app, Waiter StackCreateComplete fa
To fix this issue, add the Docker volume mount `/var/run/docker.sock:/var/run/docker.sock` to your LocalStack startup.
Refer to our [sample `docker-compose.yml` file](https://github.com/localstack/localstack/blob/master/docker-compose.yml) as an example.

#### Workaround for Podman on MacOS

The Docker socket volume mount solution does not work on MacOS because Podman runs in a virtual machine on MacOS and mounting the Docker/Podman Unix socket into the container running inside the container does not work. A workaround for this issue is to run `socat` on the host MacOS to listen on a TCP port and relay the traffic to the Docker socket. `socat` can be installed via Homebrew. The `socat` command is:
```bash
socat TCP-LISTEN:12375,fork UNIX-CONNECT:/var/run/docker.sock
```
Finally, in the `environment` section of the docker-compose.yml file, add:
```
- DOCKER_HOST=tcp://host.containers.internal:12375
```

### Function in Pending state

If you receive a `ResourceConflictException` when trying to invoke a function, it is currently in a `Pending` state and cannot be executed yet.
Expand Down