set master ip in docker compose yaml file

fix https://github.com/chrislusf/seaweedfs/issues/1118
This commit is contained in:
Chris Lu 2019-12-11 21:38:54 -08:00
parent 1ddfbff2d3
commit 06ff984786
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ services:
ports:
- 9333:9333
- 19333:19333
command: "master"
command: "master -ip=master"
volume:
build:
context: .

View file

@ -3,7 +3,7 @@
case "$1" in
'master')
ARGS="-ip `hostname -i` -mdir /data"
ARGS="-mdir /data"
# Is this instance linked with an other master? (Docker commandline "--link master1:master")
if [ -n "$MASTER_PORT_9333_TCP_ADDR" ] ; then
ARGS="$ARGS -peers=$MASTER_PORT_9333_TCP_ADDR:$MASTER_PORT_9333_TCP_PORT"

View file

@ -6,7 +6,7 @@ services:
ports:
- 9333:9333
- 19333:19333
command: "master"
command: "master -ip=master"
volume:
image: chrislusf/seaweedfs # use a remote image
ports: