Skip to content
Marcel Luz edited this page Jul 19, 2018 · 5 revisions

You can install and run Zeta fully automised via docker-compose.
A distinction is made between the initial step and the update step.


This is the prefered way. First you have to install docker with docker-compose:

Note: If you are using Docker on Windows, you must allocate at least 3 to 4 GB of memory to the Docker machine.


Install

  1. Install docker (tested with Docker version 1.12.3]
  2. Manage Docker as a non-root user
  3. Install docker-compose
  4. Checkout this repository on your server system.
  5. Build & Start all containers (more Information!)
docker-compose up -d api

Update

  1. Shutdown
docker-compose down
  1. update repo (git pull)
  2. remove old docker image (zeta-sbt:1.0.6)
docker rmi zeta-sbt:1.0.6
  1. Build & Start
docker-compose up -d api
Clone this wiki locally