-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconsole
executable file
·266 lines (219 loc) · 7.25 KB
/
console
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
#!/usr/bin/env bash
set -e
# -----------------------------------------------------------------------------
# Load environment variables
# -----------------------------------------------------------------------------
# Set current directory to directory of this script
cd $(cd -P -- "$(dirname -- "$0")" && pwd -P)/docker
if [ "$(uname)" == "Darwin" ]; then
OS_TYPE="mac"
DEFAULT_ENV=".env-macos.dev"
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
OS_TYPE="linux"
DEFAULT_ENV=".env-linux.dev"
else
echo "Unsupported OS!"
exit -1
fi
# Copy template file
if ! [[ -f .env ]]; then
cat $DEFAULT_ENV \
| grep -v "#" \
| xargs -n1 -L 1 -I{} sh -c 'echo {}' \
> .env
fi
# Import environment variables from dotenv
eval $(cat .env \
| grep -v "#" \
| sed -E 's/^([^=]*)=(.*)$/export \1="\2"/p')
MODE=$1
[[ -z $MODE ]] || shift
# -----------------------------------------------------------------------------
# Check dependencies
# -----------------------------------------------------------------------------
if ! type docker &> /dev/null; then
echo "docker is required to run this script!"
exit -1
fi
if ! type docker-compose &> /dev/null; then
echo "docker-compose is required to run this script!"
exit -1
fi
# -----------------------------------------------------------------------------
# Utils
# -----------------------------------------------------------------------------
function ask()
{
printf "$@"
read -p " (y/n) " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
return 0
else
return 1
fi
}
function setup_macos_nfs()
{
if [[ $OS_TYPE != "mac" ]]; then
return 0
fi
if [[ -f .nfs-configured ]]; then
return 0
fi
ask "Do you want setup NFS exports on your machine? Answer 'no' if you have NFS already configured on your machine." || ret=$?
if [[ $ret == "1" ]]; then
touch .nfs-configured
return 0
fi
USER_ID=`id -u`
GROUP_ID=`id -g`
NFS_EXPORT_LINE="/Users -alldirs -mapall=${USER_ID}:${GROUP_ID} localhost"
NFS_EXPORT_FILE=/etc/exports
NFS_CONF_LINE="nfs.server.mount.require_resv_port = 0"
NFS_CONF_FILE=/etc/nfs.conf
[[ -f $NFS_EXPORT_FILE ]] || sudo touch $NFS_EXPORT_FILE
[[ -f $NFS_CONF_FILE ]] || sudo touch $NFS_CONF_FILE
RESTART=0
if ! grep -qF -- "$NFS_EXPORT_LINE" "$NFS_EXPORT_FILE" || ! grep -qF -- "$NFS_CONF_LINE" "$NFS_CONF_FILE"; then
RESTART=1
fi
if [[ $RESTART == "1" ]]; then
osascript -e 'quit app "Docker"'
grep -qF -- "$NFS_EXPORT_LINE" "$NFS_EXPORT_FILE" || sudo echo "$NFS_EXPORT_LINE" | sudo tee -a $NFS_EXPORT_FILE > /dev/null
grep -qF -- "$NFS_CONF_LINE" "$NFS_CONF_FILE" || sudo echo "$NFS_CONF_LINE" | sudo tee -a $NFS_CONF_FILE > /dev/null
sudo nfsd restart
open -a Docker
while ! docker ps > /dev/null 2>&1 ; do
sleep 1;
done
fi
touch .nfs-configured
}
# -----------------------------------------------------------------------------
# Commands
# -----------------------------------------------------------------------------
function cmd_compose()
{
docker-compose ${DOCKER_COMPOSE_ARGS} --project-name ${PROJECT_NAME} "$@"
}
function cmd_start()
{
mkdir -p $APP_PATH
mkdir -p $APP_PATH/$WEB_PATH
mkdir -p $DATA_PATH
setup_macos_nfs
cmd_compose up -d "$@"
}
function cmd_stop()
{
cmd_compose stop "$@"
}
function cmd_install()
{
cmd_start
cmd_compose exec -u app php composer install
# you can put here rest of steps required to install your project
}
function cmd_create_project()
{
mkdir -p $APP_PATH
mkdir -p $DATA_PATH
if ! [ -z "$(ls -A $APP_PATH)" ]; then
echo "The \$APP_PATH directory must be empty!"
exit 1
fi
mkdir -p $APP_PATH/$WEB_PATH
setup_macos_nfs
cmd_compose up -d php
rm -rf $APP_PATH/$WEB_PATH
cmd_compose exec -u app php composer create-project "$@"
cmd_start
}
function cmd_clean()
{
cmd_compose down
for ID in `docker ps -a -q --filter "name=${PROJECT_NAME}_"`; do docker rm -f ${ID}; done
for ID in `docker images "${PROJECT_NAME}_*" --format "{{.Repository}}"`; do docker rmi -f ${ID}; done
for ID in `docker images "*/${PROJECT_NAME}_*" --format "{{.Repository}}"`; do docker rmi -f ${ID}; done
for ID in `docker volume ls -q --filter "name=${PROJECT_NAME}_"`; do docker volume rm -f ${ID}; done
}
function cmd_shell()
{
USER=app
SHELL=
while [[ $# > 0 ]]; do
ARG="$1"
if [[ $ARG == "-u" ]] || [[ $ARG == "--user" ]]; then
shift
USER=$1
elif [[ $ARG == "-s" ]] || [[ $ARG == "--shell" ]]; then
shift
SHELL=$1
else
break
fi
shift
done
SERVICE=$1
shift
if [[ -z $SERVICE ]]; then
echo "Missing SERVICE argument."
return 1
fi
if ! cmd_compose exec $SERVICE id $USER &> /dev/null; then
echo "User $USER do not exists. You will be logged as root."
USER=root
fi
if [[ -z $SHELL ]]; then
SHELL=$(cmd_compose exec $SERVICE sh -c "which zsh bash dash ash sh | head -1 | tr '\n' ' '")
fi
cmd_compose exec -u $USER -e COLUMNS="`tput cols`" -e LINES="`tput lines`" -e TERM="$TERM" $SERVICE $SHELL
}
# -----------------------------------------------------------------------------
# Run commands
# -----------------------------------------------------------------------------
if [[ ${MODE} == "compose" ]]; then
cmd_compose "$@"
elif [[ ${MODE} == "start" ]]; then
cmd_start "$@"
elif [[ ${MODE} == "stop" ]]; then
cmd_stop "$@"
elif [[ ${MODE} == "install" ]]; then
cmd_install
elif [[ ${MODE} == "create-project" ]]; then
cmd_create_project "$@"
elif [[ ${MODE} == "clean" ]]; then
cmd_clean
elif [[ ${MODE} == "shell" ]]; then
cmd_shell "$@"
else
if [[ ${MODE} == "help" ]] && [[ $1 == "compose" ]]; then
echo "Usage: $0 compose [ARGS...]"
elif [[ ${MODE} == "help" ]] && [[ $1 == "start" ]]; then
echo "Usage: $0 start [SERVICES...]"
elif [[ ${MODE} == "help" ]] && [[ $1 == "stop" ]]; then
echo "Usage: $0 stop [SERVICES...]"
elif [[ ${MODE} == "help" ]] && [[ $1 == "create-project" ]]; then
echo "Usage: $0 create-project PACKAGE_NAME [VERSION]"
elif [[ ${MODE} == "help" ]] && [[ $1 == "shell" ]]; then
echo "Usage: $0 shell [options] SERVICE"
echo ""
echo "Options:"
echo " -u, --user User to log in (default: app)"
echo " -s, --shell Shell to use"
elif [[ ${MODE} == "help" ]] && [[ $1 == "clean" ]]; then
echo "Usage: $0 clean"
else
echo "Usage: $0 compose|start|stop|clean|shell"
echo ""
echo "Commands:"
echo " compose Wrapper for docker-compose commands"
echo " start Starts all or selected Docker containers"
echo " stop Stops all or selected Docker containers"
echo " install Installs application"
echo " create-project Creates project using composer command"
echo " shell Opens container's shell"
echo " clean Removes all images, containers and volumes associated with your project"
fi
fi