Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated Docker image build steps

...

Prerequisite: Docker installed. For example, for Windows you can download https://docs.docker.com/docker-for-windows/ You may need to register at docker hub.  

Docker build file Dockerfile is available at https://github.com/apache/ignite/tree/master/docker/apache-ignite

...

Code Block
languagebash
docker build . -t apacheignite/ignite:2.7.5 -t apacheignite/ignite:latest

This build take distribution from some folder named like apache-ignite*

...

Code Block
languagebash
docker run -it --rm --name apache-ignite <IMAGE>

...

Code Block
languagebash
docker push apacheignite/ignite:2.7.5
docker push apacheignite/ignite:latest

Check results at https://hub.docker.com/r/apacheignite/ignite

...