Skip to content

kaiso/lygeum-containers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

The lygeum server official container images





What is Lygeum


Lygeum is a centralized configuration server for modern applications and services. Lygeum is especially suitable for cloud based applications and distributed systems and provides a unique interface and repository for managing configurations.learn more...

How to use this image


Run the server with the default embedded database

This should be used only for test purposes

docker run -itd -p 5000:5000 kaiso/lygeum:latest

You can go on the administration console by visiting http://localhost:5000

Run the server with PostgreSQL backend

Suitable for production environment

docker run -itd -p 5000:5000 -e DB_VENDOR=postgres (add other database environment variables here) kaiso/lygeum:latest

Environment variables to specify:

CONTEXT_PATH : the context path to serve lygeum from (use when serving lygeum behind a proxy for example)
DB_HOST : the hostname or ip of the database
DB_PORT: Specify port of the database (optional, default is DB vendor default port)
DB_DATABASE: Specify name of the database to use (optional, default is lygeum).
DB_SCHEMA: Specify name of the schema to use for DB that support schemas (optional, default is public on Postgres).
DB_USER: Specify user to use to authenticate to the database (optional, default is postgres).
DB_PASSWORD: Specify user's password to use to authenticate to the database (optional, default is postgres).

You can go on the administration console by visiting http://localhost:5000, if you set the CONTEXT_PATH env variable dont forget to append it to the url.

LICENSE

© Copyright 2020 Kais OMRI.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

The lygeum server official container images

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published