Virtual server with Docker

This is the currently supported Docker-based installation of OpenBioMaps.

The Docker installation can be used for testing, development, and production environments. The installation scripts configure the OpenBioMaps services and their dependencies in a Docker Compose environment.

Installation overview

A new OpenBioMaps Docker installation consists of the following main steps:

  1. Prepare the server and install Docker Engine and Docker Compose

  2. Download the OpenBioMaps Docker installation files

  3. Configure the installation for the server

  4. Run the OpenBioMaps installer

The installer detects the available Docker Compose implementation and supports both the current Docker Compose plugin (docker compose) and the legacy standalone Compose command (docker-compose).

Prepare Docker and Docker Compose

A Linux server with a supported Docker installation is required.

For a new Debian installation, the recommended method is to install Docker Engine from the official Docker APT repository. This also provides the Docker Compose plugin.

For current installation instructions, see the official Docker documentation:

Install Docker Engine on Debian

After installing Docker, verify that the Docker daemon is running:

sudo systemctl status docker

Test the Docker installation:

sudo docker run hello-world

Install the Docker Compose plugin if it was not installed together with Docker Engine:

sudo apt update
sudo apt install docker-compose-plugin

Check the installed Compose version:

docker compose version

The expected command is:

docker compose version

not the older standalone:

docker-compose --version

For further information about Docker Compose installation, see:

Install the Docker Compose plugin

Optional: use Docker without sudo

By default, Docker commands require root privileges. If Docker should be available to the current user without sudo, add the user to the docker group:

sudo usermod -aG docker $USER

Log out and log in again for the group membership to take effect.

For further information, see:

Docker post-installation steps for Linux

Start the OpenBioMaps installation

The OpenBioMaps Docker installation is started directly by the installation script. It is not necessary to clone the Docker repository manually.

Download and run the installer

On the server where OpenBioMaps is to be installed, run:

curl -s https://gitlab.com/openbiomaps/docker/obm-composer/-/raw/master/install.sh > /tmp/install.sh && sudo bash /tmp/install.sh

The installer will guide you through the installation process.

Configure the server

During the installation, the installer detects the server addresses available on the host, including:

  • local IP address

  • public IP address, if available

  • fully qualified hostname, if available

It presents the detected addresses and proposes a suitable default server address. The administrator can accept the proposed address or enter another address appropriate for the deployment.

The installer also detects available HTTP and HTTPS ports. If the standard ports (80 and 443) are already in use, alternative free ports can be selected.

The generated configuration is written to the installation .env file. This includes the selected server address and HTTP/HTTPS ports, as well as the passwords and other values required by the Docker environment.

Server-specific configuration

Depending on the deployment, additional configuration may be required outside the OpenBioMaps installer, for example:

  • DNS configuration for the OpenBioMaps domain

  • firewall rules

  • SSL/TLS certificates

  • SMTP/mail server configuration

  • reverse proxy configuration

  • external access to the selected HTTP/HTTPS ports

These settings depend on the server and network environment and are not required for every installation.

Installation process

After the configuration has been confirmed, the installer:

  1. prepares the Docker environment;

  2. starts the required Docker services;

  3. waits for the databases to become available;

  4. initializes the OpenBioMaps databases;

  5. performs the required post-installation operations;

  6. installs or updates the built-in OpenBioMaps projects and other system components;

  7. records the successful completion of the installation.

The installation is complete when the installer reports successful completion.

Visit your OBM app

http://YOUR_SERVER_NAME/

http://YOUR_SERVER_NAME/projects/sablon/

Log in to your template database using valaki@openbiomaps.org user name and abc123 password. After the first login, please change this default password!

If you installed the docker in your local computer you can access the services above in localhost.

Update your server and sablon project following this guide:

:doc:New server installation tutorial <../server_install>

Database access

You can access your Postgres database on the following pre-configured online database manager applications. However, it depends on your host-docker relationship.

Adminer: http://YOUR_SERVER_NAME:9882/

Adminer notes:

server = openbiomaps_biomaps_db_1
db_name = biomaps | gisadmin
db_user = biomapsadmin | sablon_admin | YOUR_PROJECT_admin
password = (check the .env file for the biomapsadmin's password or the local_vars.php.inc for ..._admin's password)

You can manage the database with the biomapsadmin user. This is a superuser. Its password is generated by the system during installation and can be found in the /srv/docker/openbiomaps/.env file.

For the MapServer map file, the encrypted password for the database connection can be generated with the /var/lib/openbiomaps/maps/access.key.

OpenBioMaps creates two databases by default. The ‘biomaps’ contains the tables needed for the system to work, while the ‘gisdata’ contains the data tables of the project databases. In other words, the latter is where the data collected by users will be stored and to which users can connect. The ‘biomapsadmin’ is a superuser in both databases. Its password is generated by the system during installation and stored in the /srv/docker/openbiomaps/.env file.

Docker maintenance app

This step is not obligatory but can be useful if you need a strong web admin interface for docker management.

mkdir -p /srv/docker/portainer && cd /srv/docker/portainer

git clone https://gitlab.com/openbiomaps/docker/obm-portainer.git .

sudo su

docker-compose pull

# Genereate a strong random password for the admin user
bash ./password_gen.sh

docker-compose up -d

On the portainer interface use the "Get started" button...

Visit your docker-admin (portainer) app

http://YOUR_SERVER_NAME:9000/

Log in to your app using admin user name and your password;

If you installed the docker in your local computer you can access the services above in localhost.

OBM maintenance: Supervisor

You can access OBM server admin interface: http://localhost:9880/supervisor.php

or

https://yourserver.com/supervisor.php

with supervisor username and password created by obm_post_install.sh. This password is located at /etc/openbiomaps/.htpasswd.

You can regenerate the Supervisor’s password with ./obm_post_install.sh update supervisor command

Updates: update application with Docker

These commands are safe, they do not destroy the changes made through the OpenBioMaps web interface.

foo@bar:~$ docker-compose pull
Pulling biomaps_db ... done
Pulling mapserver  ... done
Pulling app        ... done
## Pulling phppgadmin ... done -- There is no PhpPgAdmin currently
Pulling adminer    ... done

foo@bar:~$ docker-compose up -d
Creating obm-composer_biomaps_db_1 ... done
Creating obm-composer_mapserver_1  ... done
Creating obm-composer_adminer_1    ... done
## Creating obm-composer_phppgadmin_1 ... done
Creating obm-composer_app_1        ... done

Update only one container

foo@bar:~$ docker-compose up -d app

Email setting for projects

You must set up a Mail server access to send emails from the app

Assuming that the new server does not have its domain name, the default value for sending mail is set to SMTP (/etc/openbiomaps/system_vars.php.inc), which requires you to configure outgoing smtp servers and associated authentication for each project (/var/www/html/biomaps/projects/…/local_vars.php.inc)

These config files can be edited in the supervisor interface.

Find the mail settings section and set up the SMTP host and authentication if needed.

If there is an external SMTP server here you are an example:

// Mail settings
define('SMTP_AUTH',true); # true
define('SMTP_HOST','mail.my-mail-server.com');
define('SMTP_USERNAME','my-name@my-mail-server.com');
define('SMTP_PASSWORD','something');
define('SMTP_SECURE','tls'); # Or starttls
define('SMTP_PORT','587'); # 465
define('SMTP_SENDER','openbiomaps@my-mail-server.com');

If SMTP_SENDER is not set, the SMTP_USERNAME will be the sender. Sending mails with Google, with these simple settings is not possible, because Google uses xoauth layer to authenticate! It is possible to include that layer here!

If the host system will be the SMTP server:

 // Mail settings
define('SMTP_AUTH',false);
define('SMTP_HOST','172.17.0.1');
define('SMTP_PORT','25');
define('SMTP_SENDER','info@you-smtp-server');

For the IP address above check host “ip addr | grep docker0”

On the host depending on what MTA you have here you some examples:

Exim4

In the /etc/exim4/update-exim4.conf file

dc_relay_nets=’172.21.0.0/16’

dc_local_interfaces=’127.0.0.1 ; ::1 ; 172.17.0.1’

these lines should be updated, but depending on your exim config maybe something else as well.

In the /etc/exim4/exim4.config file

“hostlist relay_from_hosts…” line, you should extend with the obm_back network e.g.

hostlist relay_from_hosts = localhost :172.20.0.0/16 :172.17.0.0/16 :172.21.0.0/16

Comment: “Maybe one of the three networks is enough above, I did not test yet”

Postfix

inet_interfaces = 172.17.0.1

mynetworks = 172.21.0.4 172.20.0.6

Here’s how to find out docker networks and ip addresses:

docker container ls

Search for obm-composer_app_1

docker inspect xxxxx_obm-composer_app_1

Search for obm_back and obm_web interfaces:

obm-composer_obm_back {

…

“IPAddress”: “172.20.0.6”,

}

obm-composer_obm_web {

…

“IPAddress”: “172.21.0.4”,

}

Firewall

You may also need to update your firewall to enable incoming mail from the image to the host. The network address of obm_back must be allowed as an incoming network for the firewall. E.g.

ufw allow from 172.20.0.0/16 proto tcp to any port 25

Global SMTP settings

Most probably you want to use the same SMTP settings for all projects on your server. In this case, use the

  • SMTP_GLOBAL_HOST

  • SMTP_GLOBAL_AUTH

  • SMTP_GLOBAL_USERNAME

  • SMTP_GLOBAL_PASSWORD

  • SMTP_GLOBAL_SECURE

  • SMTP_GLOBAL_PORT

  • SMTP_GLOBAL_SENDER

    parameters in the sytem_vars.php.inc. At least the SMTP_GLOBAL_HOST should be set if you want to use global parameters. The local parameters override the globals always.

Docker maintenance

Stopping docker

foo@bar:~$ docker-compose down

Drop everything (including data and databases)

foo@bar:~$ docker-compose down -v

Shell access of the system in the container image

foo@bar:~$ docker-compose exec app bash

Here we accessed the app service. See service names in docker-compose.yml file.

Reading logs

foo@bar:~$ docker-compose logs -f app

Using pgtop

docker-compose exec -u postgres pg_top

Restart app

Do not restart Apache from the Docker shell, but from outside

foo@bar:~$ docker-compose restart app

Remove huge amounts of old, not used docker images

Do we have a lot?

docker images | grep "<none>"

Let’s drop them…

docker images | grep "<none>" | awk '{print $3}' | sed -e 's/^/docker rmi /' | bash

You may need to edit the traefik2.0/traefik.yml, traefik2.0/docker-compose.yml, and traefik2.0/acme.json files

Auto update of docker

https://github.com/OpenBioMaps/scripts/blob/master/docker-auto-update.readme

Archive tables, data, …

For scripts follow this repo:

https://github.com/OpenBioMaps/scripts

  • use this to set up a periodic sql dumps of important tables: archive.sh

crontab setting examples for archive.sh

#dumping normal tables from Monday to Saturday
15 04 * * 1-6 /root/archive.sh normal &
#dumping all tables and whole databases on every Sunday
15 04 * * 7 /root/archive.sh full &

Example settings in obm_archive_settings.sh

#path of table list
table_list="${HOME}/.archive_list.txt"

#postgres parameters
project_database="gisdata"
system_database="biomaps"
admin_user="gisadmin"
archive_path="/home/archives"
pgport="5432"
pg_dump="pg_dump -p $pgport"
psql="psql -p $pgport"

#FOR DOCKER based OBM systems
#docker="/usr/bin/docker-compose -f /path/to/docker-compose.yml exec -T"
#pg_dump="$docker biomaps_db pg_dump -p $pgport"
#psql="$docker biomaps_db psql -p $pgport"

#table dayof_week dayofmonth month
#foo at every day
#foo * * *
#bar every Monday
#bar 1 * *
#casbla at every 1st day of every June
#casbla * 1 6

Dumping table from the database using docker

docker-compose exec -T biomaps_db bash -c “pg_dump -U biomapsadmin –table public.YOUR_TABLE gisdata” > YOUR_TABLE.sql

Resources