Browse Source
Merge pull request #1547 from Suika/master
Allow custom command arguments to override default values in docker
pull/1553/head
Chris Lu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
5 deletions
-
docker/entrypoint.sh
|
|
@ -23,7 +23,8 @@ case "$1" in |
|
|
|
|
|
|
|
'master') |
|
|
|
ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024" |
|
|
|
exec /usr/bin/weed $@ $ARGS |
|
|
|
shift |
|
|
|
exec /usr/bin/weed master $ARGS $@ |
|
|
|
;; |
|
|
|
|
|
|
|
'volume') |
|
|
@ -31,7 +32,8 @@ case "$1" in |
|
|
|
if isArgPassed "-max" "$@"; then |
|
|
|
ARGS="-dir=/data" |
|
|
|
fi |
|
|
|
exec /usr/bin/weed $@ $ARGS |
|
|
|
shift |
|
|
|
exec /usr/bin/weed volume $ARGS $@ |
|
|
|
;; |
|
|
|
|
|
|
|
'server') |
|
|
@ -39,17 +41,20 @@ case "$1" in |
|
|
|
if isArgPassed "-volume.max" "$@"; then |
|
|
|
ARGS="-dir=/data -master.volumePreallocate -master.volumeSizeLimitMB=1024" |
|
|
|
fi |
|
|
|
exec /usr/bin/weed $@ $ARGS |
|
|
|
shift |
|
|
|
exec /usr/bin/weed server $ARGS $@ |
|
|
|
;; |
|
|
|
|
|
|
|
'filer') |
|
|
|
ARGS="" |
|
|
|
exec /usr/bin/weed $@ $ARGS |
|
|
|
shift |
|
|
|
exec /usr/bin/weed filer $ARGS $@ |
|
|
|
;; |
|
|
|
|
|
|
|
's3') |
|
|
|
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') |
|
|
|