You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
371 B
YAML
15 lines
371 B
YAML
version: '3.2'
|
|
services:
|
|
localstack:
|
|
image: localstack/localstack:latest
|
|
container_name: localstack_demo
|
|
ports:
|
|
- '4563-4599:4563-4599'
|
|
- '8055:8080'
|
|
environment:
|
|
- SERVICES=s3
|
|
- DEBUG=1
|
|
- DATA_DIR=/tmp/localstack/data
|
|
volumes:
|
|
- './.localstack:/tmp/localstack'
|
|
- '/var/run/docker.sock:/var/run/docker.sock' |