weed server: mkdir first, and set the master ip address

fix https://github.com/chrislusf/seaweedfs/issues/885
This commit is contained in:
Chris Lu 2019-03-15 00:32:42 -07:00
parent 023f447d56
commit a4e8aa98a0
2 changed files with 3 additions and 1 deletions

View file

@ -22,10 +22,11 @@ EXPOSE 9333
# s3 server http port # s3 server http port
EXPOSE 8333 EXPOSE 8333
RUN mkdir -p /data/filerdb
VOLUME /data VOLUME /data
COPY filer.toml /etc/seaweedfs/filer.toml COPY filer.toml /etc/seaweedfs/filer.toml
RUN mkdir /data/filerdb
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh

View file

@ -115,6 +115,7 @@ func runServer(cmd *Command, args []string) bool {
} }
master := *serverIp + ":" + strconv.Itoa(*masterPort) master := *serverIp + ":" + strconv.Itoa(*masterPort)
filerOptions.masters = &master
filerOptions.ip = serverIp filerOptions.ip = serverIp
serverOptions.v.ip = serverIp serverOptions.v.ip = serverIp
serverOptions.v.bindIp = serverBindIp serverOptions.v.bindIp = serverBindIp