-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.sh
executable file
·153 lines (129 loc) · 2.27 KB
/
help.sh
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/bin/bash
readonly NAME="puppeteer"
readonly LOCALHOST="127.0.0.1"
readonly FULL_PATH="$( cd "$( dirname "$0" )" && pwd )"
helps() {
case $1 in
all|*) allhelps ;;
esac
}
allhelps() {
cat <<EOF
💡 Usage: ./help.sh COMMAND
[help|usage|build|init|up|down|restart|status|logs|ssh]
[CLI]
build Build docker service
up or start Run docker-compose as daemon (or up)
down or stop Terminate all docker containers run by docker-compose (or down)
restart Restart docker-compose containers
status View docker containers status
logs View docker containers logs
ssh ssh cli
EOF
}
# Usage
usage() {
echo "Usage:"
echo "${0} [help|usage|build|init|up|down|restart|status|logs|ssh]"
}
# run init
run_init() {
case $1 in
*|env|dotenv)
rsync -avz ${FULL_PATH}/env ${FULL_PATH}/.env
;;
esac
}
# run build
build() {
docker-compose build
}
# run start
start() {
docker-compose up -d
}
# run down
stop() {
docker-compose down
}
# run restart
restart() {
docker-compose restart
}
# run status
status() {
docker-compose ps
}
# run logs
logs() {
case $1 in
php|*) docker-compose logs ;;
esac
}
# run ssh
run_ssh() {
case $2 in
php-test|php_test)
docker-compose exec php_test /bin/bash
;;
*)
docker-compose exec ${NAME} /bin/bash
;;
esac
}
# run cli
run_cli() {
echo "Bash version ${BASH_VERSION}..."
for i in {1..10}
do
echo "${!i}"
done
case $1 in
*)
docker-compose exec -T ${NAME} /bin/bash -c \
" \
${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} ${40}
"
;;
esac
}
case $1 in
cli)
run_cli \
${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} ${40}
;;
init)
run_init ${2:-v2}
;;
build)
build
;;
start|up)
start
;;
stop|down)
stop
;;
restart|reboot)
restart
;;
status|ps)
status
;;
logs)
logs ${2:-all}
;;
ssh)
run_ssh \
${1} ${2}
;;
*)
helps
;;
esac