From 9eeeec9a0017406f97c6da00b78bcaa023aac74d Mon Sep 17 00:00:00 2001
From: Patrizio Bekerle <patrizio@bekerle.com>
Date: Tue, 13 Apr 2021 09:51:36 +0200
Subject: [PATCH] Update Docker registry paths

---
 .gitlab-ci.yml       | 2 +-
 .gitlab-ci/README.md | 2 +-
 .gitlab-ci/build.sh  | 2 +-
 README.md            | 4 ++--
 package.json         | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 65ed601..ad712c1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: registry.gitlab.tugraz.at/dbp/apps/signature/main:v3
+image: registry.gitlab.tugraz.at/dbp/topics/signature/main:v1
 
 cache:
   key: $CI_PROJECT_PATH
diff --git a/.gitlab-ci/README.md b/.gitlab-ci/README.md
index 2cd6fcf..6c0de83 100644
--- a/.gitlab-ci/README.md
+++ b/.gitlab-ci/README.md
@@ -1,4 +1,4 @@
 * In case of an incompatible change increase the tag version number in build.sh
 * ./build.sh
 * (first time) sudo docker login registry.gitlab.tugraz.at
-* sudo docker push registry.gitlab.tugraz.at/dbp/apps/signature/main:v1
\ No newline at end of file
+* sudo docker push registry.gitlab.tugraz.at/dbp/topics/signature/main:v1
\ No newline at end of file
diff --git a/.gitlab-ci/build.sh b/.gitlab-ci/build.sh
index c742ab8..93a13bb 100755
--- a/.gitlab-ci/build.sh
+++ b/.gitlab-ci/build.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 set -e
-TAG="registry.gitlab.tugraz.at/dbp/apps/signature/main:v3"
+TAG="registry.gitlab.tugraz.at/dbp/topics/signature/main:v1"
 sudo docker build --tag "${TAG}" --file "Dockerfile" .
 sudo docker run --rm --security-opt label=disable \
     --volume "$(pwd)/..:/home/user/app" --workdir "/home/user/app" \
diff --git a/README.md b/README.md
index 3e34892..64a65e8 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
 # Digital Signing Application
 
-[GitLab Repository](https://gitlab.tugraz.at/dbp/apps/signature)
+[GitLab Repository](https://gitlab.tugraz.at/dbp/topics/signature)
 
 ## Local development
 
 ```bash
 # get the source
-git clone git@gitlab.tugraz.at:dbp/apps/signature.git
+git clone git@gitlab.tugraz.at:dbp/topics/signature.git
 cd signature
 git submodule update --init
 
diff --git a/package.json b/package.json
index 43f240c..ddfe675 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
   "license": "LGPL-2.1-or-later",
   "repository": {
     "type": "git",
-    "url": "https://gitlab.tugraz.at/dbp/apps/signature.git"
+    "url": "https://gitlab.tugraz.at/dbp/topics/signature.git"
   },
   "private": true,
   "workspaces": [
-- 
GitLab