May 2017
Intermediate to advanced
436 pages
9h 44m
English
As in quite a few cases before, we'll start by creating the already familiar nodes (swarm-1, swarm-2, and swarm-3):
cd cloud-provisioninggit pullscripts/dm-swarm.sh
The first service we'll create is Elastic Search (https://hub.docker.com/_/elasticsearch). Since we'll need it to be accessible from a few other services, we'll also create a network called elk:
eval $(docker-machine env swarm-1)docker network create --driver overlay elkdocker service create \ --name elasticsearch \ --network elk \ --reserve-memory 500m \ elasticsearch:2.4
After a few ...
Read now
Unlock full access