Skip to content

Commit

Permalink
Fixed local stack docker issues
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Mar 13, 2024
1 parent 1a25efe commit 3b98ec4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@ services:
localstack:
image: localstack/localstack:3.0.2
ports:
- '4563-4599:4563-4599'
- '8055:8080'
- 4563-4599:4563-4599
- 8055:8080
environment:
- SERVICES=sqs,sns,s3,cloudwatch
- DEBUG=1
volumes:
- "localstackdata:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
ready:
image: andrewlock/wait-for-dependencies
command: localstack:4566
depends_on:
- localstack

volumes:
localstackdata:
driver: local

0 comments on commit 3b98ec4

Please sign in to comment.