Skip to content

Commit 967ff2d

Browse files
Add docker image
1 parent f67529f commit 967ff2d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

docker-compose.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)