Skip to content

Commit 7eab89c

Browse files
committed
Add docker-compose.yml for local testing
1 parent ad758b5 commit 7eab89c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
azurite:
3+
image: mcr.microsoft.com/azure-storage/azurite
4+
container_name: test-azurite
5+
ports:
6+
- "10000:10000"
7+
- "10001:10001"
8+
- "10002:10002"
9+
command: azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0
10+
11+
rustfs:
12+
image: docker.io/rustfs/rustfs:latest
13+
container_name: test-rustfs
14+
ports:
15+
- "9000:9000"
16+
- "9001:9001"

0 commit comments

Comments
 (0)