Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Lipi is now available via docker. if you already have docker installed, you could run LIPI with only a few commands. To install docker on various platforms see https://docs.docker.com/get-docker/

Environment variables

  • LIPI_API_KEY - Api key from lipi config in Map Editor

  • LIPI_HTTP_SCHEME - The http protocol LIPI will run with (http or https)

  • POSITION_PROVIDER_USERNAME - Username of the position provider (CMX, Aruba ALE...)

  • POSITION_PROVIDER_PASSWORD - Password of the position provider (CMX, Aruba ALE...)

Required

  • LIPI_API_KEY

  • POSITION_PROVIDER_USERNAME

  • POSITION_PROVIDER_PASSWORD

Optional and defaults

  • LIPI_HTTP_SCHEME='https'

    • Possible Values: http, https

Running LIPI

  1. LIPI Image Version
    The current stable LIPI version is 4.1.0_0

  2. Start Server

LIPI_IMAGE_VERSION=4.1.0_0
LIPI_API_KEY=<lipi-api-key>
docker rm -f lipi-server
docker run  -e LIPI_API_KEY=$LIPI_API_KEY  \
    -e POSITION_PROVIDER_USERNAME=user \
    -e POSITION_PROVIDER_PASSWORD=pass \
    -p 443:443 \
    --name lipi-server \
    gcr.io/mazemap-public-docker/lipi-server:$LIPI_IMAGE_VERSION

3 . Start Server with local config.json file

LIPI_IMAGE_VERSION=4.1.0_0
LIPI_API_KEY=<lipi-api-key>
docker rm -f lipi-server
docker run  -e LIPI_API_KEY=$LIPI_API_KEY  \
    -e POSITION_PROVIDER_USERNAME=user \
    -e POSITION_PROVIDER_PASSWORD=pass \
    -p 443:443 \
    -v <your-config-path>:/srv/config.json \
    --name lipi-server \
    gcr.io/mazemap-public-docker/lipi-server:$LIPI_IMAGE_VERSION
  • No labels