60 lines
2.0 KiB
Bash
60 lines
2.0 KiB
Bash
#!/bin/bash
|
|
DESTINATION=$1
|
|
PORT=$2
|
|
CHAT=$3
|
|
|
|
# Clone Odoo directory
|
|
echo "Clonning the repository"
|
|
git clone --depth=1 https://github.com/andreiboyanov/emf-1995-docker-compose $DESTINATION || exit -1
|
|
rm -rf $DESTINATION/.git || exit -1
|
|
|
|
# Create PostgreSQL directory
|
|
echo "Creating the poostgresql folder $DESTINATION/postgresql"
|
|
mkdir -p $DESTINATION/postgresql || exit -1
|
|
|
|
# Change ownership to current user and set restrictive permissions for security
|
|
echo "Configuring permissions"
|
|
sudo chown -R $USER:$USER $DESTINATION || exit -1
|
|
sudo chmod -R 700 $DESTINATION || exit -1 # Only the user has access
|
|
|
|
|
|
# Check if running on macOS
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
echo "Running on macOS. Skipping inotify configuration."
|
|
else
|
|
# System configuration
|
|
echo "Configuring sysctl.conf"
|
|
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
|
|
fi
|
|
if [ $? -ne 0 ]; then exit -1; fi
|
|
|
|
# Set ports in docker-compose.yml
|
|
# Update docker-compose configuration
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
# macOS sed syntax
|
|
sed -i '' 's/10018/'$PORT'/g' $DESTINATION/docker-compose.yml || exit -1
|
|
sed -i '' 's/20018/'$CHAT'/g' $DESTINATION/docker-compose.yml || exit -1
|
|
else
|
|
# Linux sed syntax
|
|
echo "Configuring the Odoo ports"
|
|
sed -i 's/10018/'$PORT'/g' $DESTINATION/docker-compose.yml || exit -1
|
|
sed -i 's/20018/'$CHAT'/g' $DESTINATION/docker-compose.yml || exit -1
|
|
fi
|
|
|
|
# Set file and directory permissions after installation
|
|
echo "Configuring $DESTINATION permissions"
|
|
find $DESTINATION -type f -exec chmod 644 {} \; || exit -1
|
|
find $DESTINATION -type d -exec chmod 755 {} \; || exit -1
|
|
|
|
echo "Making the entrypoint executable"
|
|
chmod +x $DESTINATION/entrypoint.sh || exit -1
|
|
|
|
# Run Odoo
|
|
echo "Running the EMF-1995 social app"
|
|
docker compose -f $DESTINATION/docker-compose.yml up -d && echo "Odoo started at http://localhost:$PORT | Master Password: minhng.info | Live chat port: $CHAT"
|