Deployment using Docker Compose
Prerequisites
Before deploying Ballerine using Docker Compose, ensure you have:
- Docker and Docker Compose installed on your system (Install Docker)
Docker Compose Deployment
- Clone the project: Use Git to clone the Ballerine repository to your local machine:
git clone https://github.com/ballerine-io/ballerine.git && cd ballerine
- Switch to the dev branch: After cloning, switch to the dev branch (or the branch you wish to deploy):
git checkout dev
- Run Docker Compose: Now, you can start all services using Docker Compose:
docker compose -f deploy/docker-compose.yml up -d
The application should now be running at the ports defined in your Docker Compose configuration.