diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 33dd5b7ce8e2d68da4154720560718138c797c18..7c27617ceceff155c6af4add82b474ff5215e3f1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,7 +28,6 @@ include:
 stages:
   - build
   - test
-  - deploy
   - report
 
 .upstream-deploy-production-rules:
@@ -86,29 +85,6 @@ test:
       junit:
         - target/surefire-reports/TEST-*.xml
 
-deploy:
-  stage: deploy
-  image: docker.io/dokku/ci-docker-image:0.9.3
-  rules: !reference [.upstream-deploy-production-rules, rules]
-  variables:
-    APP_NAME: spring-petclinic-rest
-    GIT_DEPTH: "0"
-    SSH_REMOTE: "ssh://dokku@dokku-ppl.cs.ui.ac.id:22"
-    GIT_REMOTE_URL: "$SSH_REMOTE/$APP_NAME"
-    SSH_PRIVATE_KEY: $PRODUCTION_SSH_PRIVATE_KEY
-    BRANCH: $CI_DEFAULT_BRANCH
-  script:
-    - dokku-deploy
-    - sh .gitlab/dokku-ci-post-deploy.sh
-  after_script:
-    - dokku-unlock
-  environment:
-    name: production
-    url: "https://$APP_NAME.dokku-ppl.cs.ui.ac.id"
-  needs:
-    - test
-  dependencies: []
-
 visualize-coverage:
   stage: report
   image: registry.gitlab.com/haynes/jacoco2cobertura:1.0.9
diff --git a/readme.md b/readme.md
index 790ed840676ef7480dd64bb65bff03e8fa7913c4..29e733dec586869784d6dbe62b7d3d0ea7932bca 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,7 @@
-# REST version of Spring PetClinic Sample Application (spring-framework-petclinic extend ) 
+# REST version of Spring PetClinic Sample Application (spring-framework-petclinic extend) 
 
-[![Build Status](https://github.com/spring-petclinic/spring-petclinic-rest/actions/workflows/maven-build.yml/badge.svg)](https://github.com/spring-petclinic/spring-petclinic-rest/actions/workflows/maven-build.yml)
+[![pipeline status](https://gitlab.cs.ui.ac.id/pmpl/examples/spring-petclinic-rest/badges/csui/pipeline.svg)](https://gitlab.cs.ui.ac.id/pmpl/examples/spring-petclinic-rest/-/commits/csui) 
+[![coverage report](https://gitlab.cs.ui.ac.id/pmpl/examples/spring-petclinic-rest/badges/csui/coverage.svg)](https://gitlab.cs.ui.ac.id/pmpl/examples/spring-petclinic-rest/-/commits/csui) 
 
 This backend version of the Spring Petclinic application only provides a REST API. **There is no UI**.
 The [spring-petclinic-angular project](https://github.com/spring-petclinic/spring-petclinic-angular) is a Angular front-end application which consumes the REST API.