summaryrefslogtreecommitdiff
path: root/docker/README.mkd
diff options
context:
space:
mode:
Diffstat (limited to 'docker/README.mkd')
-rw-r--r--docker/README.mkd17
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/README.mkd b/docker/README.mkd
new file mode 100644
index 0000000..71c13e1
--- /dev/null
+++ b/docker/README.mkd
@@ -0,0 +1,17 @@
+# LibYAML Dockerfiles
+
+This directory is a collection of dockerfiles that can be used when developing
+and testing LibYAML.
+
+The current list is supports:
+
+- Ubuntu 16.04
+- Ubuntu 14.04
+
+## Example Usage
+
+```bash
+$ docker pull ubuntu
+$ docker build -t libyaml-ubuntu:16.04 -f dockerfiles/ubuntu-16.04 .
+$ docker run -it libyaml-ubuntu:16.04 make test
+```