aboutsummaryrefslogtreecommitdiff
path: root/docker/local-cluster-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker/local-cluster-compose.yml')
-rw-r--r--docker/local-cluster-compose.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/local-cluster-compose.yml b/docker/local-cluster-compose.yml
index a1ac824e7..bf12c4639 100644
--- a/docker/local-cluster-compose.yml
+++ b/docker/local-cluster-compose.yml
@@ -6,25 +6,25 @@ services:
ports:
- 9333:9333
- 19333:19333
- command: "master -ip=master0 -port=9333 -peers=master0:9333,master1:9334,master2:9335"
+ command: "master -ip=master0 -port=9333 -peers=master0:9333,master1:9334,master2:9335 -mdir=/data/m1"
master1:
image: chrislusf/seaweedfs:local
ports:
- 9334:9334
- 19334:19334
- command: "master -ip=master1 -port=9334 -peers=master0:9333,master1:9334,master2:9335"
+ command: "master -ip=master1 -port=9334 -peers=master0:9333,master1:9334,master2:9335 -mdir=/data/m2"
master2:
image: chrislusf/seaweedfs:local
ports:
- 9335:9335
- 19335:19335
- command: "master -ip=master2 -port=9335 -peers=master0:9333,master1:9334,master2:9335"
+ command: "master -ip=master2 -port=9335 -peers=master0:9333,master1:9334,master2:9335 -mdir=/data/m3"
volume:
image: chrislusf/seaweedfs:local
ports:
- 8080:8080
- 18080:18080
- command: 'volume -mserver="master0:9333,master1:9334,master2:9335" -port=8080 -ip=volume'
+ command: 'volume -mserver="master0:9333,master1:9334,master2:9335" -port=8080 -ip=volume -publicUrl=localhost:8080'
depends_on:
- master0
- master1