This repository contains a setup for running the LCA Collaboration Server in a Docker container.
To run this setup, you need Docker and Docker Compose:
The setup will use environment variables. These can be set in a file named .env. The environment variables will be automatically loaded by the Docker Compose setup.
# Please fill in the following environment variables in this file
MYSQL_DATABASE=<please_fill_in>
MYSQL_USER=<please_fill_in>
MYSQL_PASSWORD=<please_fill_in>
MYSQL_ROOT_PASSWORD=<please_fill_in>
OPENSEARCH_INITIAL_ADMIN_PASSWORD=<please_fill_in>
SERVER_URL=<please_fill_in> # optionalYou can start the collaboration server by executing the following command:
cd lca-collaboration-server-docker
docker compose upNOTE: When modifying the
.envfile, you need to re-run the Docker Compose command with the--force-recreateflag:
docker compose up --force-recreateIt will fetch images for the LCA Collaboration Server (from registry.greendelta.com), MySQL and OpenSearch. Then it starts containers for these images in interactive mode.
The setup will use two volumes (db and server) for storing data. These volumes are created if they do not exist yet:
$ docker volume ls
DRIVER VOLUME NAME
local lcacollab-db
local lcacollab-serverThe collaboration server will run on port 8080, thus http://localhost:8080
will bring you to the login page of the collaboration server. The initial
admin credentials should be changed, see also the configuration guide.
| Username | Password |
|---|---|
administrator |
Plea5eCh@ngeMe |
For using OpenSearch, you will need to stop and restart the containers (without
the --force-recreate flag!).
Then, re-index the repositories in /administration/overview. You can click on
Run test search in /administration/settings to verify that OpenSearch is
working.
The container can be run with the following command (the MySQL server must be up and running):
docker compose -f compose.read-only.yaml upIf you want to run the containers in background instead, just add the -d flag to the command.
The setup will use a single volume (server) for storing data. This volume is created if it does not exist yet:
$ docker volume ls
DRIVER VOLUME NAME
local lcacollab-serverFor testing purposes, a MySQL container with different host name and port can be run with the following command:
docker compose -f compose.mysql.yaml upThe database schema is initialized at start.