Docker image for Antidote key-value store (SyncFree organization)
1.4K
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/.
In order to run Antidote-containers, the (virtual) machine running docker needs to be equipped with at least 2 CPU cores.
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: {}
Content type
Image
Digest
Size
345.6 MB
Last updated
almost 10 years ago
docker pull mweber/antidote