From 348d50d9036fa03f45b36140b563093055f46d65 Mon Sep 17 00:00:00 2001 From: Christoph Beger Date: Fri, 21 Jun 2024 09:56:34 +0200 Subject: [PATCH] Add docker-compose.yml --- docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..b9941f1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +services: + rickview: + image: ghcr.io/konradhoeffner/rickview + environment: + - RICKVIEW_KB_FILE=https://github.com/Onto-Med/COP/releases/latest/download/cop.owl + - RICKVIEW_NAMESPACE=http://purl.org/ontology/cop/ + - RICKVIEW_BASE=/ontology/cop + - RICKVIEW_TITLE=COP + - RICKVIEW_SUBTITLE=Core Ontology of Phenotyping + - RICKVIEW_EXAMPLES=COP_Phenotype COP_BasicPhenotypeClass + - RICKVIEW_HOMEPAGE=https://onto-med.github.io/COP/ + - RICKVIEW_GITHUB=https://github.com/Onto-Med/COP + - RICKVIEW_DOC=https://onto-med.github.io/COP/ + ports: + - "127.0.0.1:8080:8080" + restart: unless-stopped