Skip to content

Instantly share code, notes, and snippets.

View ninformations's full-sized avatar

Nitin Sharma ninformations

View GitHub Profile
@ninformations
ninformations / docker-compose.yml
Last active July 30, 2019 04:46 — forked from neunhoef/docker-compose.yml
Docker compose file to start a local arangodb cluster
version: '2'
services:
agency:
image: arangodb/arangodb
environment:
- ARANGO_ROOT_PASSWORD=openSesame
command: --server.jwt-secret=openSesameJWT --database.password openSesame --server.endpoint tcp://0.0.0.0:5001 --agency.activate true --agency.size 1 --agency.supervision true
coordinator:
image: arangodb/arangodb