mirror of
https://github.com/beshu-tech/deltaglider.git
synced 2026-01-11 14:40:26 +01:00
19 lines
458 B
YAML
19 lines
458 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
localstack:
|
|
image: localstack/localstack:latest
|
|
ports:
|
|
- "4566:4566"
|
|
environment:
|
|
- SERVICES=s3
|
|
- DEBUG=0
|
|
- DATA_DIR=/tmp/localstack/data
|
|
volumes:
|
|
- "/tmp/localstack:/tmp/localstack"
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:4566/_localstack/health"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5 |