mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #1547 from Suika/master
Allow custom command arguments to override default values in docker
This commit is contained in:
commit
86528bf973
|
@ -23,7 +23,8 @@ case "$1" in
|
||||||
|
|
||||||
'master')
|
'master')
|
||||||
ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024"
|
ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024"
|
||||||
exec /usr/bin/weed $@ $ARGS
|
shift
|
||||||
|
exec /usr/bin/weed master $ARGS $@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'volume')
|
'volume')
|
||||||
|
@ -31,7 +32,8 @@ case "$1" in
|
||||||
if isArgPassed "-max" "$@"; then
|
if isArgPassed "-max" "$@"; then
|
||||||
ARGS="-dir=/data"
|
ARGS="-dir=/data"
|
||||||
fi
|
fi
|
||||||
exec /usr/bin/weed $@ $ARGS
|
shift
|
||||||
|
exec /usr/bin/weed volume $ARGS $@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'server')
|
'server')
|
||||||
|
@ -39,17 +41,20 @@ case "$1" in
|
||||||
if isArgPassed "-volume.max" "$@"; then
|
if isArgPassed "-volume.max" "$@"; then
|
||||||
ARGS="-dir=/data -master.volumePreallocate -master.volumeSizeLimitMB=1024"
|
ARGS="-dir=/data -master.volumePreallocate -master.volumeSizeLimitMB=1024"
|
||||||
fi
|
fi
|
||||||
exec /usr/bin/weed $@ $ARGS
|
shift
|
||||||
|
exec /usr/bin/weed server $ARGS $@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'filer')
|
'filer')
|
||||||
ARGS=""
|
ARGS=""
|
||||||
exec /usr/bin/weed $@ $ARGS
|
shift
|
||||||
|
exec /usr/bin/weed filer $ARGS $@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
's3')
|
's3')
|
||||||
ARGS="-domainName=$S3_DOMAIN_NAME -key.file=$S3_KEY_FILE -cert.file=$S3_CERT_FILE"
|
ARGS="-domainName=$S3_DOMAIN_NAME -key.file=$S3_KEY_FILE -cert.file=$S3_CERT_FILE"
|
||||||
exec /usr/bin/weed $@ $ARGS
|
shift
|
||||||
|
exec /usr/bin/weed s3 $ARGS $@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'cronjob')
|
'cronjob')
|
||||||
|
|
Loading…
Reference in a new issue