diff options
| author | Max Wittig <max.wittig@siemens.com> | 2018-12-04 15:44:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-04 15:44:07 +0100 |
| commit | f945910d54bd8817560d45eb135d18e4b52b6717 (patch) | |
| tree | 79d48b357a476e8b8f31663a44811527f9eeff71 | |
| parent | 7bd41cbf88af87a31ad1943f58c5f7f8295d956b (diff) | |
| parent | 67ab6371e69fbf137b95fd03105902206faabdac (diff) | |
| download | gitlab-f945910d54bd8817560d45eb135d18e4b52b6717.tar.gz | |
Merge pull request #651 from roozbehf/fix/docker-entrypoint-arguments
fix: docker entry point argument passing
| -rwxr-xr-x | docker-entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 6422ad0..bda8141 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -18,4 +18,4 @@ http_username = ${GITLAB_HTTP_USERNAME} http_password = ${GITLAB_HTTP_PASSWORD} EOF -exec gitlab --config-file "${GITLAB_CFG}" $@ +exec gitlab --config-file "${GITLAB_CFG}" "$@" |
