diff --git a/README.md b/README.md index 2d245dc..a917bdf 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,17 @@ -## Using Alpine Linux +# About + +This file contains a step-by-step guide that demonstrates how one can +create a compact docker image containing a small service written in +Erlang. More complex docker examples can be found in the +[advanced_examples](advanced_examples) folder. + + +## Create a Docker Image Using Alpine Linux In this example we create a docker image containing a small Erlang application. -For more complex examples, a number of links can be found [here](http://github.com/erlang/docker-erlang-example/tree/minikube-simple/). + We use the following Dockerfile, containing two build stages: diff --git a/advanced_examples/README.md b/advanced_examples/README.md new file mode 100644 index 0000000..14b8a35 --- /dev/null +++ b/advanced_examples/README.md @@ -0,0 +1,7 @@ +# Examples + +* [Using Docker](http://github.com/erlang/docker-erlang-example/) +* [Using Docker: Logstash](http://github.com/erlang/docker-erlang-example/tree/logstash) +* [Using Docker Compose: Logstash/ElasticSearch/Kibana](http://github.com/erlang/docker-erlang-example/tree/elk) +* [Using Minikube: Simple](http://github.com/erlang/docker-erlang-example/tree/minikube-simple) +* [Using Minikube: Prometheus/Grafana](http://github.com/erlang/docker-erlang-example/tree/minikube-prom-graf)