diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 3f8187e85ce9c731ce035f10800a918ed1e596bd..0000000000000000000000000000000000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-stages:
-  - mirror
-
-gitolite_mirror:
-  stage: mirror
-  image:
-    name: alpine/git
-    entrypoint: [ "/bin/sh", "-c" ]
-  variables:
-    GIT_STRATEGY: clone
-    GIT_CHECKOUT: "false"
-  script: |
-    mkdir -p ~/.ssh
-    echo "${GITLAB_MIRROR_SERVICE}" > ~/.ssh/id_ecdsa
-    echo "${GITOLITE_SSH_FINGERPRINT}" > ~/.ssh/known_hosts
-    chmod go-rw -R ~/.ssh
-    cd /tmp
-    git clone --mirror ${CI_REPOSITORY_URL} project
-    cd project
-    git remote add gitolite git@git.ub.intern.uni-leipzig.de:gitlab-vufind.git
-    git push --mirror gitolite
-  tags: [docker]
-