Skip to content

Commit de13f51

Browse files
remove LAMBDA_REMOTE_DOCKER configuration from README and docker-compose files (#256)
1 parent 636c092 commit de13f51

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

lambda-mounting-and-debugging/javascript/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ Alternatively, you can use the following `localstack` CLI configuration:
2929

3030
```sh
3131
LAMBDA_DOCKER_FLAGS='-e NODE_OPTIONS=--inspect-brk=0.0.0.0:9229 -p 9229:9229' \
32-
LAMBDA_REMOTE_DOCKER=0 \
3332
localstack start -d
3433
```
3534

lambda-mounting-and-debugging/javascript/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ services:
99
- "127.0.0.1:4510-4559:4510-4559" # external services port range
1010
environment:
1111
- DEBUG=1
12-
- LAMBDA_REMOTE_DOCKER=0
1312
- LAMBDA_DOCKER_FLAGS=-e NODE_OPTIONS=--inspect-brk=0.0.0.0:9229 -p 9229:9229
1413
- LAMBDA_EXECUTOR=${LAMBDA_EXECUTOR-}
1514
- DOCKER_HOST=unix:///var/run/docker.sock

lambda-mounting-and-debugging/python/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,10 @@ make install
2121
Make sure that LocalStack is started with the following configuration:
2222
```
2323
LOCALSTACK_AUTH_TOKEN=... \
24-
LAMBDA_REMOTE_DOCKER=0 \
2524
LAMBDA_DOCKER_FLAGS='-p 19891:19891' \
2625
DEBUG=1 localstack start
2726
```
2827

29-
Please note that `LAMBDA_REMOTE_DOCKER=0` needs to be configured in order to properly run the sample app (required for local Docker volume mounts).
30-
3128
The config option `LAMBDA_DOCKER_FLAGS='-p 19891:19891'` defines a Docker flag that exposes port `19891` for debugging the Lambda handler code that will run inside the container.
3229

3330
## Running the Sample

0 commit comments

Comments
 (0)