Launching server Docker containers
We’ll go through the same steps as in the previous chapters:
- If you haven’t done so already, shut down any services you might have left running from the other chapters by executing the following:
% docker-compose down
- Run the Docker Compose script that will download the Grafana and InfluxDB containers and then launch them. The
docker-compose.yml
file is available in theChapter08
directory of the GitHub repository for this book:% docker-compose up -d --pull missing [+] Running 3/3 Network chapter08_default Created 0.1s Container chapter08-influxdb-1 Started 0.5s Container chapter08-grafana-1 Started ...