diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-12-27 15:13:58 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-12-27 15:13:58 -0800 |
| commit | 68028ee87673a5ba5d386bb278e549d37ddcaf5d (patch) | |
| tree | 974d79bcbb8ee27bcd2caa5a97be85b886cd4af9 /docker/entrypoint.sh | |
| parent | 260b038441777df7d420378c5f60c60381985462 (diff) | |
| download | seaweedfs-68028ee87673a5ba5d386bb278e549d37ddcaf5d.tar.xz seaweedfs-68028ee87673a5ba5d386bb278e549d37ddcaf5d.zip | |
clean up
Diffstat (limited to 'docker/entrypoint.sh')
| -rwxr-xr-x | docker/entrypoint.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 084c7cd6d..1c47c57f2 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -29,12 +29,11 @@ case "$1" in ;; 'filer') - exec /bin/mkdir -p /data/filerdb ARGS="-ip `hostname -i` " if [ -n "$MASTER_PORT_9333_TCP_ADDR" ] ; then ARGS="$ARGS -master=$MASTER_PORT_9333_TCP_ADDR:$MASTER_PORT_9333_TCP_PORT" fi - exec /usr/bin/weed $@ $ARGS + exec /bin/mkdir -p /data/filerdb; /usr/bin/weed $@ $ARGS ;; 's3') |
