bibbox / app-openspecimen

BIBBOX openspecimen application
8 stars 4 forks source link

openspecimen BIBBOX application

This container can be installed as BIBBOX APP or standalone.

After the docker installation follow these instructions.

Standalone Installation

Clone the github repository. If necessary change the ports in the environment file .env and the volume mounts in docker-compose.yml.

git clone https://github.com/bibbox/app-openspecimen
cd app-openspecimen
docker network create bibbox-default-network
docker-compose up -d

The main App can be opened and set up at:

http://localhost:9000

Install within BIBBOX

Visit the BIBBOX page and find the App by its name in the store. Click on the symbol and select install. Then fill the parameters below and name your App, click install again.

Docker Images used

Install Environment Variables

The default values for the standalone installation are:

Mounted Volumes

mysql Container

In case the installation process reccurently shows the following information message

INFO liquibase.executor.jvm.JdbcExecutor- SELECT LOCKED FROM openspecimen.DATABASECHANGELOGLOCK WHERE ID=1 INFO liquibase.lockservice.StandardLockService- Waiting for changelog lock....

and the installationis not proceeding, do the following:

USE openspecimen

SELECT * from DATABASECHANGELOGLOCK;

UPDATE DATABASECHANGELOGLOCK SET LOCKED=FALSE, LOCKGRANTED=null, LOCKEDBY=null where ID=1;