Browse Source

Revert "allow overwrite flags"

This reverts commit 232b0f0e
Chris Lu 4 years ago
parent
commit
1e64dbcb98
1 changed files with 5 additions and 5 deletions
  1. 5 5
      docker/entrypoint.sh

+ 5 - 5
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')