-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·281 lines (204 loc) · 7.68 KB
/
setup.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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#!/bin/bash
GUIDOCKER_DEFAULT_PROJECTS_DIR=~/development/projects
# function install {
# DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# echo $DIR
# echo "$0"
# echo $PATH
# }
function magento2-simple {
ls -al $GUIDOCKER_DEFAULT_PROJECTS_DIR
echo " - - - "
echo "Enter the project that we are dockerizing:"
read PROJECTKEY
PROJECT_DIR="$GUIDOCKER_DEFAULT_PROJECTS_DIR/$PROJECTKEY"
ls -al $PROJECT_DIR
echo " - - - "
echo "Enter the Magento 2 repo directory that we are dockerizing:"
read MAGENTO_FOLDER
MAGENTO_DIR="$PROJECT_DIR/$MAGENTO_FOLDER"
echo $MAGENTO_DIR
#ls -al $MAGENTO_DIR
if [ -e "$MAGENTO_DIR/pub/index.php" ]
then
echo "Found Magento Install."
echo " - - - "
echo " Do you want to Dockerize your Magento 2 Install? (Y/n)"
read DOCKERIZE_CONFIRM
if [ -n "$DOCKERIZE_CONFIRM" ] && [ "$DOCKERIZE_CONFIRM" == "Y" ]
then
clear
echo "One moment while we initialize the project folders... "
sleep 1
mkdir -p $PROJECT_DIR/magento-db/data
mkdir -p $PROJECT_DIR/magento-es/data
echo "We are moving the devops directory to your Magento Project..."
sleep 1
cp -R magento2-simple/devops $MAGENTO_DIR/
echo "We are moving the Dockerfile and ignore file..."
sleep 1
cp magento2-simple/Dockerfile $MAGENTO_DIR/
cp magento2-simple/.dockerignore $MAGENTO_DIR/
cp magento2-simple/Makefile $MAGENTO_DIR/
cp magento2-simple/version $MAGENTO_DIR/
if [ -e "$PROJECT_DIR/docker-compose.yml" ]
then
echo "Looks like you already have a docker-compose file for this project..."
sleep 1
echo "We will copy a dockerize sample for your purusal"
sleep 1
cp magento2-simple/devops/docker-compose.sample.yml $PROJECT_DIR/
else
echo "We are moving the docker-compose file Project dir: $PROJECT_DIR"
sleep 1
cp magento2-simple/devops/docker-compose.sample.yml $PROJECT_DIR/docker-compose.yml
fi
echo " - - - "
echo "If all went then you should now be able to go to your project directory, do a little setup and then run: docker-compose up"
echo "Please read the Readme at devops/readme.md in the Magento project"
echo " - - - "
else
clear
echo "Maybe next time then... good bye!"
fi
else
clear
echo "! ! ! -- -- - - -"
echo "Looks like there is no Magento Project here."
echo "Please check the files and make sure that you have your magento project in $PROJECT_DIR"
fi
}
function magento1-simple {
ls -al $GUIDOCKER_DEFAULT_PROJECTS_DIR
echo " - - - "
echo "Enter the project that we are dockerizing:"
read PROJECTKEY
PROJECT_DIR="$GUIDOCKER_DEFAULT_PROJECTS_DIR/$PROJECTKEY"
ls -al $PROJECT_DIR
echo " - - - "
echo "Enter the Magento 1 repo directory that we are dockerizing:"
read MAGENTO_FOLDER
MAGENTO_DIR="$PROJECT_DIR/$MAGENTO_FOLDER"
echo $MAGENTO_DIR
#ls -al $MAGENTO_DIR
if [ -e "$MAGENTO_DIR/app/etc/config.xml" ]
then
echo "Found Magento Install."
echo " - - - "
echo " Do you want to Dockerize your Magento 1 Install? (Y/n)"
read DOCKERIZE_CONFIRM
if [ -n "$DOCKERIZE_CONFIRM" ] && [ "$DOCKERIZE_CONFIRM" == "Y" ]
then
clear
echo "One moment while we initialize the project folders... "
sleep 1
mkdir -p $PROJECT_DIR/magento-db/data
mkdir -p $PROJECT_DIR/magento-es/data
echo "We are moving the devops directory to your Magento Project..."
sleep 1
cp -R magento1-simple/devops $MAGENTO_DIR/
echo "We are moving the Dockerfile and ignore file..."
sleep 1
cp magento1-simple/Dockerfile $MAGENTO_DIR/
cp magento1-simple/.dockerignore $MAGENTO_DIR/
if [ -e "$PROJECT_DIR/docker-compose.yml" ]
then
echo "Looks like you already have a docker-compose file for this project..."
sleep 1
echo "We will copy a dockerize sample for your purusal"
sleep 1
cp magento1-simple/devops/docker-compose.sample.yml $PROJECT_DIR/
else
echo "We are moving the docker-compose file Project dir: $PROJECT_DIR"
sleep 1
cp magento1-simple/devops/docker-compose.sample.yml $PROJECT_DIR/docker-compose.yml
fi
echo " - - - "
echo "If all went then you should now be able to go to your project directory, do a little setup and then run: docker-compose up"
echo "Please read the Readme at devops/readme.md in the Magento project"
echo " - - - "
else
clear
echo "Maybe next time then... good bye!"
fi
else
clear
echo "! ! ! -- -- - - -"
echo "Looks like there is no Magento Project here."
echo "Please check the files and make sure that you have your magento project in $PROJECT_DIR"
fi
}
function akeneo2-simple {
ls -al $GUIDOCKER_DEFAULT_PROJECTS_DIR
echo " - - - "
echo "Enter the project that we are dockerizing:"
read PROJECTKEY
PROJECT_DIR="$GUIDOCKER_DEFAULT_PROJECTS_DIR/$PROJECTKEY"
ls -al $PROJECT_DIR
echo " - - - "
echo "Enter the Akeneo 2 repo directory that we are dockerizing:"
read APP_FOLDER
APP_DIR="$PROJECT_DIR/$APP_FOLDER"
echo $APP_DIR
if [ -e "$APP_DIR/app/config/pim_parameters.yml" ]
then
echo "Found Akeneo Install."
echo " - - - "
echo " Do you want to Dockerize your Akeneo 2 Install? (Y/n)"
read DOCKERIZE_CONFIRM
if [ -n "$DOCKERIZE_CONFIRM" ] && [ "$DOCKERIZE_CONFIRM" == "Y" ]
then
clear
echo "One moment while we initialize the project folders... "
sleep 1
mkdir -p $PROJECT_DIR/akeneo-db/data
mkdir -p $PROJECT_DIR/akeneo-es/data
echo "We are moving the devops directory to your Akeneo Project..."
sleep 1
cp -R akeneo2-simple/devops $APP_DIR/
echo "We are moving the Dockerfile and ignore file..."
sleep 1
cp akeneo2-simple/Dockerfile $APP_DIR/
cp akeneo2-simple/.dockerignore $APP_DIR/
if [ -e "$PROJECT_DIR/docker-compose.yml" ]
then
echo "Looks like you already have a docker-compose file for this project..."
sleep 1
echo "We will copy a dockerize sample for your purusal"
sleep 1
cp akeneo2-simple/devops/docker-compose.sample.yml $PROJECT_DIR/
else
echo "We are moving the docker-compose file Project dir: $PROJECT_DIR"
sleep 1
cp akeneo2-simple/devops/docker-compose.sample.yml $PROJECT_DIR/docker-compose.yml
fi
echo " - - - "
echo "If all went then you should now be able to go to your project directory, do a little setup and then run: docker-compose up"
echo "Please read the Readme at devops/readme.md in the Akeneo project"
echo " - - - "
else
clear
echo "Maybe next time then... good bye!"
fi
else
clear
echo "! ! ! -- -- - - -"
echo "Looks like there is no Akeneo Project here."
echo "Please check the files and make sure that you have your Akeneo project in $PROJECT_DIR"
fi
}
function init {
echo "Initialize Project Structure"
}
function help {
cat <<HELPTEXT
!!! Help
Test Help Text
HELPTEXT
}
COMMAND=$1
if [ -z "$1" ]
then
help
fi
$COMMAND ${@:2}