There was an error while loading. Please reload this page.
1 parent f67529f commit 967ff2dCopy full SHA for 967ff2d
docker-compose.yaml
@@ -0,0 +1,15 @@
1
+version: "3.8"
2
+
3
+services:
4
+ localstack:
5
+ container_name: "${LOCALSTACK_DOCKER_NAME:-localstack-ts-api-gateway-lambda-dynamodb-crud}"
6
+ image: localstack/localstack
7
+ ports:
8
+ - "127.0.0.1:4566:4566"
9
+ - "127.0.0.1:4510-4559:4510-4559"
10
+ environment:
11
+ - DEBUG=1
12
+ - SERVICES=dynamodb
13
+ volumes:
14
+ - "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
15
+ - "/var/run/docker.sock:/var/run/docker.sock"
0 commit comments