-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c6f607
commit 2343756
Showing
1 changed file
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
#!/bin/bash | ||
|
||
# ============================================ | ||
# RUN sudo ./install.sh | ||
# ============================================ | ||
|
||
set -e # Exit immediately if a command exits with a non-zero status | ||
|
||
# ------------------------------------------------------- | ||
# bash colors for log | ||
# ------------------------------------------------------- | ||
|
||
black=`tput setaf 0` | ||
red=`tput setaf 1` | ||
green=`tput setaf 2` | ||
yellow=`tput setaf 3` | ||
blue=`tput setaf 4` | ||
magenta=`tput setaf 5` | ||
cyan=`tput setaf 6` | ||
white=`tput setaf 7` | ||
reset=`tput sgr0` | ||
|
||
# ------------------------------------------------------- | ||
# print log level | ||
# ------------------------------------------------------- | ||
function log() { | ||
date_now=`date '+%Y-%m-%d %H:%M:%S'` | ||
case $1 in | ||
debug) echo -e "${date_now} :: ${2}" ;; | ||
warning) echo -e "${date_now} :: ${yellow}${2}${reset}" ;; | ||
error) echo -e "${date_now} :: ${red}${2}${reset}" ;; | ||
*) echo -e "${date_now} :: ${magenta}${1}${reset}" ;; | ||
esac | ||
} | ||
|
||
# ------------------------------------------------------- | ||
# Check if Linux OS | ||
# ------------------------------------------------------- | ||
unamestr=$(uname) | ||
if [[ "$unamestr" != 'Linux' ]]; then | ||
log warning "This install script is supported only on Linux OS" | ||
exit | ||
fi | ||
|
||
# ------------------------------------------------------- | ||
# Check if run as root | ||
# ------------------------------------------------------- | ||
if [ "$EUID" -ne 0 ]; then | ||
log warning "Please run as root: sudo ./install.sh" | ||
exit | ||
fi | ||
|
||
# ============================================ | ||
# Start the installation... | ||
# ============================================ | ||
|
||
ENV=.env | ||
|
||
if ! [ -f "$ENV" ]; then | ||
|
||
log "Copy .env.template to .env (edit it according to your needs)" | ||
|
||
cp .env.template $ENV | ||
|
||
fi | ||
|
||
printf 'Use docker (y/n)? ' | ||
read answer | ||
|
||
if [ "$answer" != "${answer#[Yy]}" ] ;then | ||
|
||
log "Install Docker and Docker Compose" | ||
|
||
sudo apt install -y docker.io | ||
|
||
sudo apt install -y docker-compose | ||
|
||
|
||
log "Add the current user to the docker group" | ||
|
||
usermod -aG docker $USER | ||
|
||
|
||
YAML=docker-compose.yml | ||
|
||
if ! [ -f "$YAML" ]; then | ||
|
||
log "Copy Docker compose yaml file" | ||
|
||
cp docker-compose.template.yml $YAML | ||
fi | ||
|
||
printf 'Use official docker image (y/n)? ' | ||
read answer | ||
|
||
if [ "$answer" != "${answer#[Yy]}" ] ;then | ||
|
||
log "Get latest official image from Docker Hub" | ||
|
||
docker pull mirotalk/bro:latest | ||
else | ||
log "Build image from source" | ||
|
||
docker-compose build | ||
|
||
|
||
log "Remove old and unused docker images" | ||
|
||
docker images |grep '<none>' |awk '{print $3}' |xargs docker rmi | ||
fi | ||
|
||
log "Start containers" | ||
|
||
docker-compose up #-d | ||
else | ||
log "Install dependencies" | ||
|
||
npm install | ||
|
||
|
||
log "Start the server" | ||
|
||
npm start | ||
fi |