Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. LIPI Image Version
    The current stable LIPI version is 4.12.0_0Start Server2

  2. Start Server
    Create an environment variable file lipi-docker-env-file

    Code Block
    LIPI_API_KEY=<lipi-api-key>
    POSITION_PROVIDER_USERNAME=<username-here>
    POSITION_PROVIDER_PASSWORD=<password-here>


    Then use the environment variable file to start the lipi

    Code Block
    docker run --rm --name lipi \
     --env-file=lipi-docker-env-file \
     -p 443:8080 \
      gcr.io/mazemap-public-docker/lipi:4.2.2
  3. Alternatively you can include the environment variables in the docker run command
    Remember to fill in the placeholders

    Code Block

...

...

  1. LIPI_IMAGE_VERSION=4.

...

  1. 2.

...

  1. 2
    LIPI_API_KEY=<lipi-api-key>
    docker run --rm -

...

  1. -name lipi

...

  1.  \
     

...

  1.  

...

  1.   -e LIPI_API_KEY=$LIPI_API_KEY  \
        -e POSITION_PROVIDER_USERNAME=<username-here> \
        -e POSITION_PROVIDER_PASSWORD=<password-here> \
        -p 443:

...

  1. 8080 \

...

  1. 
       

...

  1.  

...

  1. gcr.io/mazemap-public-docker/lipi

...

  1. :$LIPI_IMAGE_VERSION

...

  1. Start Server with local config.json file
    Remember to fill in the placeholders.

    Code Block
    languagebash
    LIPI_IMAGE_VERSION=4.

...

  1. 2.

...

  1. 2
    LIPI_API_KEY=<lipi-api-key>
    docker run --rm -

...

  1. -name lipi

...

  1.  \
     

...

  1.  

...

  1.   -e LIPI_API_KEY=$LIPI_API_KEY  \
        -e POSITION_PROVIDER_USERNAME=

...

  1. <username-here> \
        -e POSITION_PROVIDER_PASSWORD=

...

  1. <password-here> \
        -v <your-config-path>:/

...

  1. app/resources/local_config.json \
        -

...

  1. p 443:8080 \
        gcr.io/mazemap-public-docker/lipi

...

  1. :$LIPI_IMAGE_VERSION

Applying LIPI Config Changes

...

Code Block
docker restart lipi-server

List available LIPI versions

Code Block
docker image ls  --format '{{json .Tag}}'  gcr.io/mazemap-public-docker/lipi