This commit is contained in:
Simone Scarduzio
2025-09-23 07:33:07 +02:00
parent 3bd545e94e
commit 39e3ce5567
4 changed files with 164 additions and 9 deletions

19
docker-compose.test.yml Normal file
View File

@@ -0,0 +1,19 @@
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