diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c7841c8c40f7bfd31d4afd556d382f7b29422f3e..f795c0357e00093267513d4bb38d3c928e4bb5d4 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 63402e96feefefc9ad9da02fc2bfa3805ce221e1..41a98f36f3d8048228e135702ca8cdcd224d71c3 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