Created
October 16, 2023 20:36
-
-
Save andersoonluan/65966f3f328e7af09db0fd1abce786b5 to your computer and use it in GitHub Desktop.
AWS LocalStack (SQS,SNS and S3)
This file contains 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.9' | |
services: | |
localstack: | |
container_name: localstack | |
image: localstack/localstack:1.4.0 | |
networks: | |
- webnet | |
ports: | |
- '4566:4566' | |
environment: | |
- SERVICES=sqs,sns,s3 | |
- DEBUG=1 | |
- AWS_DEFAULT_REGION=us-east-1 | |
- DATA_DIR=/tmp/localstack/data | |
volumes: | |
- ./tmp/localstack:/var/lib/localstack | |
- /var/run/docker.sock:/var/run/docker.sock | |
networks: | |
webnet: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment