forked from aalphaa/wookteam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd
More file actions
executable file
·39 lines (37 loc) · 1.08 KB
/
cmd
File metadata and controls
executable file
·39 lines (37 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env bash
COMPOSE="docker-compose"
if [ $# -gt 0 ];then
if [[ "$1" == "artisan" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php php artisan "$@"
elif [[ "$1" == "php" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php php "$@"
elif [[ "$1" == "composer" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php composer "$@"
elif [[ "$1" == "supervisorctl" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php supervisorctl "$@"
elif [[ "$1" == "test" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php ./vendor/bin/phpunit "$@"
elif [[ "$1" == "npm" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php npm "$@"
elif [[ "$1" == "yarn" ]]; then
shift 1
$COMPOSE run --rm -w /var/www php yarn "$@"
elif [[ "$1" == "mysql" ]]; then
shift 1
$COMPOSE run --rm -w / mariadb mysql "$@"
elif [[ "$1" == "restart" ]]; then
shift 1
$COMPOSE stop
$COMPOSE start
else
$COMPOSE "$@"
fi
else
$COMPOSE ps
fi