-
Notifications
You must be signed in to change notification settings - Fork 608
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
services:
localstack:
image: localstack/localstack:4
ports:
- 4566:4566
- 8080:8080
environment:
- SERVICES=s3,dynamodb
- DEBUG=1
- DATA_DIR=/tmp/localstack/data
- PORT_WEB_UI=8080
- DOCKER_HOST=unix:///var/run/docker.sock
- HOST_TMP_FOLDER=${TMPDIR}
- AWS_ACCESS_KEY_ID=deltalake
- AWS_SECRET_ACCESS_KEY=weloverust
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4566/health"]
fake-gcs:
# Custom image - see fsouza/fake-gcs-server#1164
image: tustvold/fake-gcs-server
command:
[
"-scheme",
"http",
"-public-host",
"localhost:4443",
"-backend",
"memory",
]
ports:
- 4443:4443
azurite:
image: mcr.microsoft.com/azure-storage/azurite:latest
ports:
- 10000:10000