Skip to main content
Version: 1.2.10

docker_pipeline

Start up the pipeline (all containers) using:

docker-compose up -d

This will also restart any containers/processes that have died. "-d" runs containers in the background.

You can see the status of the containers and whether any have died (exited) using

docker-compose ps

To check the logs for each of the containers, run

docker-compose logs

Add -f or, e.g., -f logstash to see new log messages as they arrive. --timestamps, --tail, and --since are also useful -- look up details in Docker documentation.

To shut down the pipeline (all containers) use

docker-compose down