Docker compose image container

0

How to interconnect 3 images in docker-compose? I would like the elasticsearch, kibana and panthomJS to be inserted in only 1 container, however I only managed elasticsearch with kibana.

How can I do this? Any information regarding any version I can turn to afterwards.

    
asked by anonymous 13.06.2017 / 02:10

1 answer

0

The first step in docker-compose is to create the network, the second step is in each of the containers described in the compose, specify the use of this network. From this point you can reference each service by its name.

I have a docker-compose example with ElasticSearch, LogStash Kibana and RabbitMQ

I hope to help!

    
13.06.2017 / 19:56