Running an Apache Ignite Image
This release contains some basic Docker Compose files intended to help you test the built images. To start the Compose environment for Apache Ignite, navigate to the examples folder and execute the following commands:
• Start Ignite:
docker-compose up -d
• Check container logs:
docker-compose logs -f ignite
• Stop and remove a specific container:
docker-compose rm -s ignite
• Stop and remove all containers:
docker-compose down
• Stop and remove all containers and clean volumes (cleans certs, etc.):
docker-compose down -v