diff --git a/Jenkinsfile b/Jenkinsfile
index f462396feaba1ec66d61086664811530cffab1fd..3158724eccec3e6a7fcce560e234d0c3f9eb57c1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -3,6 +3,7 @@
 env.PIPELINE_VERSION = VersionNumber(versionNumberString: '${BUILD_DATE_FORMATTED,"yyyyMMdd"}.${BUILDS_TODAY_Z}')
 
 osname = 'apertis'
+collection_id = "org.apertis.os"
 
 release = "v2019dev0"
 
@@ -242,6 +243,7 @@ def buildOStree(architecture, type, board, debosarguments = "", repo = "repo") {
         -t image:${image_name} \
         -t message:${release}-${type}-${architecture}-${board}_${PIPELINE_VERSION} \
         -t ostree:${repo} \
+        -t collection_id:${collection_id} \
         ${WORKSPACE}/${osname}-ostree-commit.yaml""")
 
   sh(script: """
@@ -265,6 +267,8 @@ def buildOStreeRollbackDelta(architecture, type, board, debosarguments = "", rep
       ostree --repo=${repo} commit \
         --tree=ref=${branch} \
         --branch=${rollback_branch} \
+        --add-metadata-string=ostree.collection-binding=${collection_id} \
+        --bind-ref=${branch} \
         --skip-list="skip_list"
       mkdir -p tests
       ostree --repo=${repo} static-delta generate \
@@ -344,6 +348,7 @@ def buildOStreeImage(architecture, type, board, debosarguments = "") {
             -t image:${image_name} \
             -t message:${release}-${type}-${architecture}-${board}_${PIPELINE_VERSION} \
             -t ostree:${repo} \
+            -t collection_id:${collection_id} \
             ${WORKSPACE}/apertis-ostree-image-${board}.yaml;""")
     }
 }
@@ -366,6 +371,7 @@ def buildContainer(architecture, type, board, debosarguments = "") {
              -t ospack:${osname}_ostree_${release}-${type}-${architecture}-${board}_${PIPELINE_VERSION} \
              -t message:${release}-${type}-${architecture}-${type}-${board}_${PIPELINE_VERSION} \
              -t ostree:${repo} \
+             -t collection_id:${collection_id} \
              ${WORKSPACE}/${osname}-ostree-pack.yaml""")
     }
 }