new localstack compose script
parent
a92451aae1
commit
ef6ad30aec
@ -1,17 +1,15 @@
|
|||||||
version: "2.1"
|
version: '3.2'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
localstack:
|
localstack:
|
||||||
image: localstack/localstack
|
image: localstack/localstack:latest
|
||||||
container_name: localstack
|
container_name: localstack_demo
|
||||||
ports:
|
ports:
|
||||||
- "4566-4599:4566-4599" # ports of the different services
|
- '4563-4599:4563-4599'
|
||||||
- "9000:9000"
|
- '8055:8080'
|
||||||
environment:
|
environment:
|
||||||
- SERVICES=sqs,dynamodb # a list of desired services you want to use.
|
- SERVICES=s3
|
||||||
- DEFAULT_REGION=eu-west-1 # This is the region where your localstack mocks to be running
|
- DEBUG=1
|
||||||
- DATA_DIR=/tmp/localstack/data
|
- DATA_DIR=/tmp/localstack/data
|
||||||
- PORT_WEB_UI=9000
|
volumes:
|
||||||
- LAMBDA_EXECUTOR=local
|
- './.localstack:/tmp/localstack'
|
||||||
- DOCKER_HOST=unix:///var/run/docker.sock
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||||
- START_WEB=1
|
|
||||||
Loading…
Reference in New Issue