Skip to content

About Fast set-up FlectraHQ 2.0 for dev with Docker Compose

Notifications You must be signed in to change notification settings

Inghosty/flex

 
 

Repository files navigation

Installing FlectraHQ 2.0 with one command (Supports multiple FlectraHQ instances on one server). For development.

Quick Installation

Run for Ubuntu 22.04

sudo apt-get purge needrestart

Install docker and docker-compose:

curl -s https://raw.githubusercontent.com/6Ministers/flectra-2.0dev-docker-compose/master/setup.sh | sudo bash -s

Run the following to set up first Flectra instance @ localhost:10020 (default master password: master.password):

curl -s https://raw.githubusercontent.com/6Ministers/flectra-2.0dev-docker-compose/master/run.sh | sudo bash -s flectra-one 10020 20020

and/or run the following to set up another Flectra instance @ localhost:11020 (default master password: master.password):

curl -s https://raw.githubusercontent.com/6Ministers/flectra-2.0dev-docker-compose/master/run.sh | sudo bash -s flectra-two 11020 21020

Some arguments:

  • First argument (flectra-one): Flectra deploy folder
  • Second argument (10020): Flectra port
  • Third argument (20020): live chat port

If curl is not found, install it:

$ sudo apt-get install curl
# or
$ sudo yum install curl

Usage

Start the container:

docker-compose up

Then open localhost:10020 to access Flectra 2.0.

  • If you get any permission issues, change the folder permission to make sure that the container is able to access the directory:
$ sudo chmod -R 777 addons
$ sudo chmod -R 777 etc
$ sudo chmod -R 777 postgresql
  • If you want to start the server with a different port, change 10020 to another value in docker-compose.yml inside the parent dir:
ports:
 - "10020:7073"
  • To run Flectra container in detached mode (be able to close terminal without stopping Flectra):
docker-compose up -d
  • To Use a restart policy, i.e. configure the restart policy for a container, change the value related to restart key in docker-compose.yml file to one of the following:
    • no = Do not automatically restart the container. (the default)
    • on-failure[:max-retries] = Restart the container if it exits due to an error, which manifests as a non-zero exit code. Optionally, limit the number of times the Docker daemon attempts to restart the container using the :max-retries option.
    • always = Always restart the container if it stops. If it is manually stopped, it is restarted only when Docker daemon restarts or the container itself is manually restarted. (See the second bullet listed in restart policy details)
    • unless-stopped = Similar to always, except that when the container is stopped (manually or otherwise), it is not restarted even after Docker daemon restarts.
 restart: always             # run as a service
  • To increase maximum number of files watching from 8192 (default) to 524288. In order to avoid error when we run multiple Flectra instances. This is an optional step. These commands are for Ubuntu user:
$ if grep -qF "fs.inotify.max_user_watches" /etc/config/sysctl.conf; then echo $(grep -F "fs.inotify.max_user_watches" /etc/config/sysctl.conf); else echo "fs.inotify.max_user_watches = 524288" | sudo tee -a /etc/config/sysctl.conf; fi
$ sudo sysctl -p    # apply new config immediately

Custom addons

The addons/ folder contains custom addons. Just put your custom addons if you have any.

Flectra configuration & log

  • To change Flectra configuration, edit file: etc/flectra.conf.
  • Log file: etc/flectra-server.log
  • Default database password (admin_passwd) is ``master.password`, please change it @ /etc/config/flectra.conf#L60

Flectra container management

Run Flectra:

docker-compose up -d

Restart Flectra:

docker-compose restart

Stop Flectra:

docker-compose down

Live chat

In docker-compose.yml#L21, we exposed port 20020 for live-chat on host.

Configuring nginx to activate live chat feature (in production):

#...
server {
    #...
    location /longpolling/ {
        proxy_pass http://127.0.0.1:20020/longpolling/;
    }
    #...
}
#...

docker-compose.yml

  • flectrahq/flectra:2.0
  • postgres:14

About

About Fast set-up FlectraHQ 2.0 for dev with Docker Compose

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.8%
  • Shell 0.2%