Installation

This page describes how to install Ginc Radar Public in a production environment.

By deploying the radar you automatically accept the license agreement.

Installation using static archive

  1. Download tar archive from our Nexus

  2. Upload it to your host, unarchive and configure web server for example with

    tar -xvf "ginc-radar-public-$VERSION.tar.gz" -C $PATH_TO_YOUR_NGINX_DIR/html

Example Nginx config

server {
    server_name example.com;

    root  $PATH_TO_YOUR_NGINX_DIR/html/ginc-radar-public;
    include /etc/nginx/mime.types;

    location / {
        try_files $uri /index.html;
    }
}

Installation using Docker Engine

docker run \
  --name ginc-radar-public --rm \
  -p 80:80 -v ${PWD}/data:/usr/share/nginx/html/assets/data \
  gincprojects/ginc-radar-public:tagname

Persistent data is stored in the ${PWD}/data local directory. Provide your own path if necessary. This directory contains the files described in After Installation Steps.

Installation using Docker Compose

version: '3.9'

services:
  ginc-radar-public:
    image: gincprojects/ginc-radar-public
    container_name: ginc-radar-public
    restart: always
    volumes:
      - "./data:/usr/share/nginx/html/assets/data"
    ports:
      - "80:80"

The directory /usr/share/nginx/html/assets/data contains the files described in After Installation Steps.

After Installation Steps