...
Code Block | ||||
---|---|---|---|---|
| ||||
$ docker-compose -f elastic-docker-tls.yml stop Stopping kib01 ... done Stopping es01 ... done $ docker-compose -f elastic-docker-tls.yml up -d Starting es01 ... done Recreating kib01 ... done |
After the restart, now we can connect to the Kibana dashboard and verify that the service is working (remember to use the https protocol). As already seen, you can tear down the containers, network, and volumes by running docker-compose -f elastic-docker-tls.yml down -v
.
...