Sign inSign up

mweber/antidote

By mweber

Updated about 8 years ago

Docker image for Antidote key-value store (SyncFree organization)

Image
0

1.4K

mweber/antidote repository overview

Antidote

Build Status

Welcome to the Antidote repository, the reference platform of the SyncFree European Project

You will find all information in the documentation at http://syncfree.github.io/antidote/.

Prerequisite

In order to run Antidote-containers, the (virtual) machine running docker needs to be equipped with at least 2 CPU cores.

Usage

Either run the container on a stand-alone server or integrate it into your Docker composition.

Stand-alone command example:

docker run -d --name antidote --restart always -p "4368:4368" -p "8085:8085" -p "8087:8087" -p "8099:8099" -p "9100:9100" -e [email protected] mweber/antidote

To connect to the node and get an Antidote console, use the following command:

docker exec -it antidote /opt/antidote/bin/antidote attach

In a docker-compose file:

version: '2'
services:
  antidotenode:
    image: mweber/antidote:latest
    environment:
      NODE_NAME: "antidote@antidotenode"
      SHORT_NAME: "true"
    volumes:
      - antidote_data:/opt/antidote/data
volumes:
  antidote_data: {}

Tag summary

Content type

Image

Digest

Size

345.6 MB

Last updated

almost 10 years ago

docker pull mweber/antidote