-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
21 lines (20 loc) · 810 Bytes
/
docker-compose.yml
File metadata and controls
21 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: "3.8"
services:
localstack:
image: localstack/localstack
privileged: true
ports:
- "4566:4566"
environment:
- DEBUG=1
- DATA_DIR=/var/lib/localstack/data
- SERVICES=acm, apigateway, cloudformation, cloudwatch, dynamodb, dynamodbstreams, ec2, es, events, firehose, iam, kinesis, kms, lambda, rds, route53, s3, s3api, secretsmanager, ses, sns, sqs, ssm, stepfunctions, sts
- LAMBDA_EXECUTOR=docker-reuse
- LAMBDA_REMOTE_DOCKER=false
- LAMBDA_REMOVE_CONTAINERS=true
- DOCKER_HOST=unix:///var/run/docker.sock
- HOST_TMP_FOLDER=${TMPDIR}
volumes:
- ./data:/var/lib/localstack
- "/var/run/docker.sock:/var/run/docker.sock"
- ./bin:/docker-entrypoint-initaws.d