Skip to content

thien-nguyenthanh/arangodb-cluster-compose

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

ArangoDB Cluster with Docker Compose

This guide explains how to set up an ArangoDB cluster using Docker Compose. ArangoDB is a distributed, multi-model database that supports key-value, document, and graph data models.

Prerequisites

Before you begin, make sure you have the following installed on your machine:

  • Docker: Containerization platform used to run the ArangoDB cluster.
  • Docker Compose: Tool for defining and running multi-container Docker applications.

Setup Instructions

Follow these steps to set up an ArangoDB cluster using Docker Compose:

  1. Clone the project.
git clone [email protected]:thien-nguyenthanh/arangodb-cluster-compose.git 
  1. Run the following command to start the ArangoDB cluster
cd arangodb-cluster-compose && docker compose up -d 
  1. Wait for the containers to start up. You can check the container logs using the following command:
docker-compose logs -f
  1. Once the containers are running, you can access the ArangoDB Web UI by opening a browser and navigating to http://localhost:8529 or http://localhost:8530. These ports are exposed for the coordinators in the docker-compose.yml file.

  2. From the ArangoDB Web UI, you can configure and manage your ArangoDB cluster.

Cleaning Up

To stop and remove the ArangoDB cluster, run the following command in the directory containing the docker-compose.yml file:

docker-compose down

Resources

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published