forked from hoangthevuongvn/odoo-15-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
19 lines (18 loc) · 791 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
DESTINATION=$1
PORT=$2
CHAT=$3
# clone Odoo directory
git clone --depth=1 https://github.com/hoangthevuongvn/odoo-15-docker-compose.git $DESTINATION
rm -rf $DESTINATION/.git
# set permission
mkdir -p $DESTINATION/postgresql
sudo chmod -R 777 $DESTINATION
# config
if grep -qF "fs.inotify.max_user_watches" /etc/sysctl.conf; then echo $(grep -F "fs.inotify.max_user_watches" /etc/sysctl.conf); else echo "fs.inotify.max_user_watches = 524288" | sudo tee -a /etc/sysctl.conf; fi
sudo sysctl -p
sed -i 's/10015/'$PORT'/g' $DESTINATION/docker-compose.yml
sed -i 's/20015/'$CHAT'/g' $DESTINATION/docker-compose.yml
# run Odoo
docker-compose -f $DESTINATION/docker-compose.yml up -d
echo 'Started Odoo @ http://localhost:'$PORT' | Master Password: HoangVuong | Live chat port: '$CHAT