From 0593adb0eb87b7412ad0375bc3b8ee33e6260d78 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Fri, 5 Mar 2021 17:40:32 +0100 Subject: [PATCH] added first (soft) deployment with registry on the Gitlab Runner server --- .gitlab-ci.yml | 3 +++ README.md | 21 ++++++++++++++++++--- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7841c8c40..f795c0357e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,6 +54,9 @@ deploy: - docker push $CI_REGISTRY/fda-table-service:latest - docker build -t $CI_REGISTRY/fda-ui:latest ./fda-ui - docker push $CI_REGISTRY/fda-ui:latest + only: + - dev + - master production: stage: production diff --git a/README.md b/README.md index 63402e96fe..41a98f36f3 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,28 @@ # FAIR Data Austria Services -## Build +## Install + +Pull the latest dev/master images on your client through: -Get the latest version of the fda-services repository and pull the submodule changes: +```bash +docker login https://docker.martinweise.at +> Username: fda +> Password: fda-docker +``` ```bash -git submodule update --init --recursive +docker pull docker.martinweise.at/fda-analyse-service +docker pull docker.martinweise.at/fda-discovery-server +docker pull docker.martinweise.at/fda-gateway-service +docker pull docker.martinweise.at/fda-database-managing-service +docker pull docker.martinweise.at/fda-container-managing-service +docker pull docker.martinweise.at/fda-query-service +docker pull docker.martinweise.at/fda-table-service +docker pull docker.martinweise.at/fda-ui ``` +## Build + Everything is handled by compose, just build it by running: ```bash -- GitLab