Docker Installation
Usage (docker-compose, including PostgreSQL)
> git clone https://github.com/limbas/limbas-docker.git
> cd limbas-docker
> docker-compose up
Limbas will be available for usage at http://localhost:8000
User: admin Pass: limbas
Usage (with your custom database)
> docker pull limbas/limbas
> docker run -p 8000:80 limbas/limbas
Connecting the Limbas container and your database container is up to you.
Limbas will be available for configuration at http://localhost:8000/install/
Environment Variables
The Limbas image uses environment variables, especially for the database connection. All variables are optional.
LIMBAS_DB_TYPE
(default: postgres) This environment variable defines the type of the database used.
LIMBAS_DB_HOST
(default: limbas_pgsql) This environment variable is the host of the database to connect to.
LIMBAS_DB_PORT
(default: empty) This environment variable is the port used by the database host.
LIMBAS_DB_NAME
(default: openlimbas) This environment variable is the name of the database.
LIMBAS_DB_USER
(default: limbasuser) This environment variable is the username used to connect to the database.
LIMBAS_DB_PASSWORD
(default: limbaspass) This environment variable is the password used to connect to the database.
Build your own Limbas image
To create a customised Limbas image, please use the full source code. There you will find the corresponding Docker files.