-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit
executable file
·37 lines (29 loc) · 976 Bytes
/
init
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
#!/bin/sh
DOCKER=$(PWD)
BASE=$DOCKER/..
echo "Initializing environment ...."
echo ""
echo "----------------------------------------------"
echo "Preparing nginx folder ..."
mkdir -vp $BASE/nginx
cp -v $DOCKER/nginx.default.template.conf $BASE/nginx/default.conf
echo "Now you can edit $BASE/nginx/default.conf on your needs."
echo "Or you might want to add new nginx configurations."
echo ""
echo "----------------------------------------------"
echo "Preparing mysql folder ..."
mkdir -vp $BASE/mysql/data
echo ""
echo "----------------------------------------------"
echo "Preparing redis folder ..."
mkdir -vp $BASE/redis/data
echo ""
echo "----------------------------------------------"
echo "Preparing php folder ..."
mkdir -vp $BASE/php
cp -v $DOCKER/php.template.ini $BASE/php/php.ini
echo "Now you can edit $BASE/php/php.ini on your needs."
echo ""
echo "----------------------------------------------"
echo "Preparing sites folder ..."
mkdir -vp $BASE/sites