summaryrefslogtreecommitdiff
path: root/docs/gl_objects/templates.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gl_objects/templates.py')
-rw-r--r--docs/gl_objects/templates.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/gl_objects/templates.py b/docs/gl_objects/templates.py
index 1bc97bb..0874dc7 100644
--- a/docs/gl_objects/templates.py
+++ b/docs/gl_objects/templates.py
@@ -24,3 +24,12 @@ gitlabciymls = gl.gitlabciymls.list()
gitlabciyml = gl.gitlabciymls.get('Pelican')
print(gitlabciyml.content)
# end gitlabciyml get
+
+# dockerfile list
+dockerfiles = gl.dockerfiles.list()
+# end dockerfile list
+
+# dockerfile get
+dockerfile = gl.dockerfiles.get('Python')
+print(dockerfile.content)
+# end dockerfile get