Skip to content

Instantly share code, notes, and snippets.

@way2datta
Created September 27, 2020 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save way2datta/6c6c1aae71f47737b91eccfa8a2ec2fc to your computer and use it in GitHub Desktop.
Save way2datta/6c6c1aae71f47737b91eccfa8a2ec2fc to your computer and use it in GitHub Desktop.
Docker compose file for localstack
version: "3.1"
services:
localstack:
image: localstack/localstack:latest
container_name: localstack_demo
ports:
- "4563-4599:4563-4599"
- "8000:8080"
environment:
- SERVICES=${SERVICES- }
- DEBUG=1
- DATA_DIR=/tmp/localstack/data
volumes:
- "./.localstack:/tmp/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment