Skip to content

Commit 5d7e54c

Browse files
whummerclaude
andcommitted
Remove LAMBDA_DOCKER_FLAGS; port mapping handled by lambda_debug_mode.yaml
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6b2de0f commit 5d7e54c

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
}
2222
},
2323
"remoteEnv": {
24-
"LAMBDA_DOCKER_FLAGS": "-p 19891:19891",
2524
"LOCALSTACK_APPINSPECTOR_ENABLE": "1",
2625
"LOCALSTACK_APPINSPECTOR_DEV_ENABLE": "1"
2726
},

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ help: ## Show this help
1010
# ── LocalStack ────────────────────────────────────────────────────────────────
1111

1212
start: ## Start LocalStack in the background
13-
LOCALSTACK_APPINSPECTOR_ENABLE=1 LOCALSTACK_APPINSPECTOR_DEV_ENABLE=1 \
14-
LAMBDA_DOCKER_FLAGS='-p 19891:19891' localstack start -d
13+
LOCALSTACK_APPINSPECTOR_ENABLE=1 LOCALSTACK_APPINSPECTOR_DEV_ENABLE=1 localstack start -d
1514

1615
debug-start: ## Start LocalStack with Lambda debug mode enabled (port 19891)
1716
LOCALSTACK_APPINSPECTOR_ENABLE=1 LOCALSTACK_APPINSPECTOR_DEV_ENABLE=1 \
18-
LAMBDA_DOCKER_FLAGS='-p 19891:19891' \
1917
LAMBDA_DEBUG_MODE_CONFIG_PATH=$(PWD)/.localstack/lambda_debug_mode.yaml localstack start -d
2018

2119
hot-reload: ## Switch order-handler to hot-reload mode (edits take effect immediately)

0 commit comments

Comments
 (0)