Created
November 18, 2022 21:52
-
-
Save dlabey/41f8d142285602e5701337d212b08ce1 to your computer and use it in GitHub Desktop.
LocalStack docker-compose file with init
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
localstack: | |
image: localstack/localstack | |
ports: | |
- 4566:4566 | |
environment: | |
- AWS_DEFAULT_REGION=us-west-2 | |
- EDGE_PORT=4566 | |
- SERVICES=dynamodb,sqs,secretsmanager | |
volumes: | |
- './.local/secretsmanager/secrets.json:/etc/localstack/init/ready.d/secrets.json' | |
- './.local/localstack-init-aws.sh:/etc/localstack/init/ready.d/init-aws.sh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment