I\'m hitting the following error when trying to pull the elastcisearch images from dockerhub.
docker-compose pull
Pulling elasticsearch (elasticsearch:2.2.0)...
this might happen on local or user registries that might not have root CA signed certificates (these might be self singed). You can use the following steps use these registries:
sudo systemctl edit docker.service
add the registry like this:
[Service]
ExecStart=
ExecStart=/usr/bin/dockerd --insecure-registry
sudo systemctl daemon-reload
sudo systemctl restart docker.service