Sirko docker

October 7, 2018 ยท View on GitHub

This repository keeps:

  • a Dockerfile for building a docker image for the Sirko Engine
  • an example of a docker-compose.yml file to launch the Sirko Engine along with Neo4j.

The documentation describing how to use the docker image can be found here.

Building a new image

  1. Download the latest version of the Sirko Engine:

    $ wget https://github.com/sirko-io/engine/releases/download/v0.5.0/sirko.tar.gz
    
  2. Build an image:

    IMPORTANT: Don't forget to update the version in the example below.

    $ sudo docker build -t dnesteryuk/sirko:0.5.0 -t dnesteryuk/sirko:latest .
    
  3. Push the built image to the Docker hub:

    $ sudo docker push dnesteryuk/sirko:0.5.0
    $ sudo docker push dnesteryuk/sirko:latest