gitlab: renamed script parameter start -> app:start

This commit is contained in:
Sameer Naik 2013-12-19 12:59:10 +05:30
parent 56316a8391
commit 46067cb393
2 changed files with 3 additions and 3 deletions

View File

@ -31,4 +31,4 @@ EXPOSE 22
EXPOSE 80
ENTRYPOINT ["/gitlab/gitlab"]
CMD ["start"]
CMD ["app:start"]

View File

@ -202,7 +202,7 @@ gitlab_start () {
gitlab_help () {
echo "Available options:"
echo " start - Starts the gitlab server (default)"
echo " app:start - Starts the gitlab server (default)"
echo " initialize - Initialize the database."
echo " migrate - Migrate the database."
echo " bash - Start interactive bash shell."
@ -210,7 +210,7 @@ gitlab_help () {
}
case "$1" in
start)
app:start)
gitlab_start
;;
initialize)