diff --git a/docker-containers/README.md b/docker-containers/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..147a77614f850f22b564c05fa552cd0315b30f6d
--- /dev/null
+++ b/docker-containers/README.md
@@ -0,0 +1,28 @@
+# Include jobs from external YAML files
+
+You can include the jobs in this repository's YAML files as follows:
+
+```yml
+include:
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/docker-containers/artifactory.yml
+```
+
+You can include the execution order in yout .gitlab-ci.yml file as follows:
+
+```yml
+stages:
+  - deploy  
+```
+
+## Example
+
+An example of a valid .gitlab-ci.yml can be:
+
+```yml
+include:
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/docker-containers/artifactory.yml
+
+stages:
+  - deploy
+
+```