1
0
mirror of https://github.com/erlang/docker-erlang-example.git synced 2025-07-30 22:43:04 +03:00

Remove all references to branches examples

This commit is contained in:
Lukas Larsson
2019-10-02 18:15:20 +02:00
parent 68e677d5f8
commit 57d094067c
3 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ This example runs four docker containers:
- kibana (analytics and visualization platform, web interface)
As in the
[Logstash example](http://github.com/erlang/docker-erlang-example/tree/logstash),
[Logstash example](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/logstash),
the dockerwatch container is started with a logging driver that sends
everything printed on standard out on to a UDP port in the logstash
container. Logstash forwards each log event over http to the
@ -120,7 +120,7 @@ services:
The Logstash pipeline configuration is specified in
`logstash/pipeline/logstash.conf`. This is the same as in the
[Logstash example](http://github.com/erlang/docker-erlang-example/tree/logstash),
[Logstash example](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/logstash),
except it has the additional `elasticsearch` output plugin.

View File

@ -241,7 +241,7 @@ EOF
## Testing
We can then test the API using the same curl commands as the [simple demo](http://github.com/erlang/docker-erlang-example/tree/minikube-simple):
We can then test the API using the same curl commands as the [simple demo](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/minikube-simple):
```
> curl -H "Content-Type: application/json" -X POST -d "" $(minikube service dockerwatch --url | head -1)/cnt

View File

@ -4,7 +4,7 @@ This is a quick demo of using minikube to run an Erlang node with prometheus and
The example we will use is the
[Docker Watch](http://github.com/erlang/docker-erlang-example/tree/master) node.
This demo assumes that you have done the
[Using Minikube](http://github.com/erlang/docker-erlang-example/tree/minikube-simple) demo.
[Using Minikube](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/minikube-simple) demo.
This is only meant to be an example of how to get started. It is not the only,
nor neccesarily the best way to setup minikube with Erlang.
@ -117,7 +117,7 @@ You can view the entire new supervisor module [here](dockerwatch/src/dockerwatch
## Deploy Dockerwatch
Now we should deploy the dockerwatch service almost the same way as was done in
[Using Minikube: Simple](http://github.com/erlang/docker-erlang-example/tree/minikube-simple).
[Using Minikube: Simple](https://github.com/erlang/docker-erlang-example/tree/master/advanced_examples/minikube-simple).
So:
```