diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-05-22 10:30:46 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-05-22 10:30:46 -0700 |
| commit | 1e64dbcb98523530a340abbd35c3d641242b2683 (patch) | |
| tree | 1b40e166b6eec77ed0a275c27d4cfcb16ab6c59e /docker/entrypoint.sh | |
| parent | 232b0f0e6e6f12b05f0eb6e1a205bd99818fcbf0 (diff) | |
| download | seaweedfs-1e64dbcb98523530a340abbd35c3d641242b2683.tar.xz seaweedfs-1e64dbcb98523530a340abbd35c3d641242b2683.zip | |
Revert "allow overwrite flags"
This reverts commit 232b0f0e
Diffstat (limited to 'docker/entrypoint.sh')
| -rwxr-xr-x | docker/entrypoint.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 3c9df6402..b9202d4d3 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -4,27 +4,27 @@ case "$1" in 'master') ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024" - exec /usr/bin/weed $ARGS $@ + exec /usr/bin/weed $@ $ARGS ;; 'volume') ARGS="-dir=/data -max=0" - exec /usr/bin/weed $ARGS $@ + exec /usr/bin/weed $@ $ARGS ;; 'server') ARGS="-dir=/data -volume.max=0 -master.volumePreallocate -master.volumeSizeLimitMB=1024" - exec /usr/bin/weed $ARGS $@ + exec /usr/bin/weed $@ $ARGS ;; 'filer') ARGS="" - exec /usr/bin/weed $ARGS $@ + exec /usr/bin/weed $@ $ARGS ;; 's3') ARGS="-domainName=$S3_DOMAIN_NAME -key.file=$S3_KEY_FILE -cert.file=$S3_CERT_FILE" - exec /usr/bin/weed $ARGS $@ + exec /usr/bin/weed $@ $ARGS ;; 'cronjob') |
