Skip to content

Docker Image

Gabriel Araujo edited this page Sep 11, 2018 · 2 revisions

Docker Compose

An easy method to deploy japonicus to a remote server like AWS is to use docker. First you build your gekko docker image, then just run this from japonicus source directory:

$sudo env JARGS="-gc --strat=NEO" docker-compose up

Alternatively, add this to gekko docker-compose file.

  japonicus:
    build: relative-path-from-gekko-to-the-japonicus-repo/
    volumes:
      - ./volumes/gekko-japonicus:/usr/src/app/output
    links:
      - gekko
    ports:
      - 5000:5000
Clone this wiki locally